| 7.5.1.0 | Locations XML |
| 7.5.1.1 | CSV Format |
| 7.5.1.2 | GeoRSS Format |
<?xml version="1.0" encoding="ISO-8859-1"?>
<stationtable name="Example">
<station name="station 1" lat="65:02:06" lon="-147:30:06" elev="790"/>
<station name="station 2" lat="40.3" lon="-107.5" elev="10"/>
...
</stationtable>
The lat and lon attributes can be of the form:
+/- ddd:mm, ddd:mm:, ddd:mm:ss, ddd::ss, ddd.fffff ===> [+/-] ddd.fffff
+/- ddd, ddd:, ddd:: ===> [+/-] ddd
+/- :mm, :mm:, :mm:ss, ::ss, .fffff ===> [+/-] .fffff
+/- :, :: ===> 0.0
Any of the above with N,S,E,W appended
The elev attribute is optional. By default it is in meters. You can override this
default with an elevunit in the stationtable tag. e.g.:
The station tags can have an id attribute as well:<?xml version="1.0" encoding="ISO-8859-1"?> <stationtable name="Example" elevunit="feet"> <station name="station 1" lat="65:02:06" lon="-147:30:06" elev="5340"/> ...
<station id="APD" name="Fairbanks/Pedro Dome"
lat="65:02:06" lon="-147:30:06" elev="790"/>
The station tags can also have any other attributes:
<station id="APD" name="Fairbanks/Pedro Dome"
st="AK" co="US"
lat="65:02:06" lon="-147:30:06" elev="790"/>
<station id="FTG" name="Denver/Boulder"
st="CO" co="US"
lat="39:47:12" lon="-104:32:45" elev="1675"/>
These can be displayed by the station model used in the
Location Display Control.
latitude lat longitude lon longAltitude is given by the column names:
alt altitudeThe altitude value, if defined, is by default in meters. You can optionally specify a unit with the suffix: "[unit name]" (see example).
The first column that is found that is not one of the location columns is taken to be the name of the location.
Example:
Name,Latitude,Longitude,Altitude,State Boulder,40,-107,5430[feet],CO Miami,30,-95,0[feet],FL ...