From: robertl Date: Sun, 19 Sep 2010 21:47:58 +0000 (+0000) Subject: Document the UTM XCSV stuff. X-Git-Tag: archive/raspbian/1.10.0+ds-2+rpi1~1^2~12^2~11^2~927 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5329ae0d5f107f26916997830a87d3f4bc84018d;p=gpsbabel.git Document the UTM XCSV stuff. --- diff --git a/gpsbabel/xmldoc/chapters/styles.xml b/gpsbabel/xmldoc/chapters/styles.xml index 036247675..dffe821fc 100644 --- a/gpsbabel/xmldoc/chapters/styles.xml +++ b/gpsbabel/xmldoc/chapters/styles.xml @@ -762,6 +762,69 @@ examples: +
+UTM +A location in UTM has several components: a zone, a northing, and an easting. The UTM format specifier is the most common representation of these. + +example: + +IFIELD UTM, "%s" # writes 6S 519045 3984035 -the easting is first by convention. +
+ +
+UTM_EASTING +This is the decimal component representing the easting + +example: + +IFIELD UTM_EASTING, "", "%d" # outputs 519045 + +
+ +
+UTM_NORTHING + +This is the decimal component representing the northing + +example: + +IFIELD UTM_NORTHING "", "%d" # outputs 3984035 + +
+ +
+UTM_ZONE +The UTM zone. + +example: + +IFIELD UTM_ZONE "", "%d" # outputs 6 + +
+ +
+UTM_ZONEC + +The UTM Zone character. + +example: + +IFIELD UTM_ZONEC "", "%d" # outputs S + +
+ +
+ + +The full UTM zone and latitude band. + +example: + +IFIELD UTM_ZONEF "", "%d%c" # outputs 6S + +
+ +
ALT_FEET