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