AdifLocation class

a sequence of 11 characters representing a latitude or longitude in XDDD MM.MMM format, where

  • X is a directional Character from the set {E, W, N, S}
  • DDD is a 3-Digit degrees specifier, where 0 <= DDD <= 180 (use leading zeroes)
  • There is a single space character in between DDD and MM.MMM
  • MM.MMM is an unsigned Number minutes specifier with its decimal point in the third position, where 00.000 <= MM.MMM <= 59.999 (use leading and trailing zeroes)
Inheritance

Constructors

AdifLocation(String value)

Properties

hashCode int
The hash code for this object.
no setterinherited
original String
The original data of the adif data.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
getter/setter pairinherited

Methods

getString() String
override
getType() String
override
isIntl() bool
Whether the data type accepts non-ASCII characters.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromString(String str) AdifLocation
override