mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
13 lines
255 B
Swift
13 lines
255 B
Swift
|
|
import Foundation
|
||
|
|
import MeshtasticProtobufs
|
||
|
|
|
||
|
|
extension NodeInfo {
|
||
|
|
var isValidPosition: Bool {
|
||
|
|
hasPosition &&
|
||
|
|
position.longitudeI != 0 &&
|
||
|
|
position.latitudeI != 0 &&
|
||
|
|
position.latitudeI != 373346000 &&
|
||
|
|
position.longitudeI != -1220090000
|
||
|
|
}
|
||
|
|
}
|