gpt4 book ai didi

Powershell:在 Windows 10 中获取 GPS 坐标 - 使用 Windows Location API?

转载 作者:行者123 更新时间:2023-12-01 09:15:13 24 4
gpt4 key购买 nike

我正在寻找一种使用 Windows 位置 API 从 powershell 脚本收集内部 GPS 数据的方法,因为 Windows 位置平台不再能够满足需求。以前,有一个 com 对象可以使用。

有没有办法在 Windows 10 中实现这一点?

最佳答案

使用 System.Device.Location 的示例方法,这应该是你要找的。

Add-Type -AssemblyName System.Device #Required to access System.Device.Location namespace
$GeoWatcher = New-Object System.Device.Location.GeoCoordinateWatcher #Create the required object
$GeoWatcher.Start() #Begin resolving current locaton

while (($GeoWatcher.Status -ne 'Ready') -and ($GeoWatcher.Permission -ne 'Denied')) {
Start-Sleep -Milliseconds 100 #Wait for discovery.
}

if ($GeoWatcher.Permission -eq 'Denied'){
Write-Error 'Access Denied for Location Information'
} else {
$GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevent results.
}

关于Powershell:在 Windows 10 中获取 GPS 坐标 - 使用 Windows Location API?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46287792/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com