Re: [Gpsbabel-misc] GPX turned into huge + HTML TABLE file ?
GPSBabel converts and transfers data like waypoints, tracks & routes.
Brought to you by:
robertl
|
From: Gilles <cod...@fr...> - 2017-11-12 17:07:58
|
On 12/11/2017 15:10, tsteven4 wrote: > For kml output options uncheck "Export placemarks for tracks and > routes". If you lose to much with this option leave it checked and > explore unchecking "Include extended data for trackpoints (default = > 1)" and/or "Display labels on track and routepoints (default = 1)". Thanks for the tip. Unchecking "Export placemarks for tracks and routes" did the trick. To further trim down the KML output, is there a way to get rid of the <Style…></Style> section, which Maps.me doesn't support at this point anyway ? ================== KML output <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2"> <Document> <name>GPS device</name> <snippet>Created dim. nov. 12 18:04:09 2017</snippet> <LookAt> <gx:TimeSpan> <begin>2017-11-11T19:25:00Z</begin> <end>2017-11-12T09:17:32.640Z</end> </gx:TimeSpan> <longitude>1.689155</longitude> <latitude>49.373730</latitude> <range>198095.448092</range> </LookAt> <!-- Normal track style --> <Style id="track_n"> <IconStyle> <scale>.5</scale> <Icon> <href>http://earth.google.com/images/kml-icons/track-directional/track-none.png</href> </Icon> </IconStyle> <LabelStyle> <scale>0</scale> </LabelStyle> </Style> <!-- Highlighted track style --> <Style id="track_h"> <IconStyle> <scale>1.2</scale> <Icon> <href>http://earth.google.com/images/kml-icons/track-directional/track-none.png</href> </Icon> </IconStyle> </Style> <StyleMap id="track"> <Pair> <key>normal</key> <styleUrl>#track_n</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#track_h</styleUrl> </Pair> </StyleMap> <!-- Normal waypoint style --> <Style id="waypoint_n"> <IconStyle> <Icon> <href>http://maps.google.com/mapfiles/kml/pal4/icon61.png</href> </Icon> </IconStyle> </Style> <!-- Highlighted waypoint style --> <Style id="waypoint_h"> <IconStyle> <scale>1.2</scale> <Icon> <href>http://maps.google.com/mapfiles/kml/pal4/icon61.png</href> </Icon> </IconStyle> </Style> <StyleMap id="waypoint"> <Pair> <key>normal</key> <styleUrl>#waypoint_n</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#waypoint_h</styleUrl> </Pair> </StyleMap> <Style id="lineStyle"> <LineStyle> <color>99ffac59</color> <width>6</width> </LineStyle> </Style> <Folder> <name>Tracks</name> <Folder> <name>Dieppe – Forges-les-Eaux</name> <snippet/> <description> <![CDATA[<table> <tr><td><b>Distance</b> 129.6 mi </td></tr> <tr><td><b>Min Alt</b> 9.843 ft </td></tr> <tr><td><b>Max Alt</b> 764.436 ft </td></tr> <tr><td><b>Max Speed</b> 9.4 mph </td></tr> <tr><td><b>Avg Speed</b> 9.3 mph </td></tr> <tr><td><b>Start Time</b>2017-11-11T19:25:00Z</td></tr> <tr><td><b>End Time</b>2017-11-12T09:17:32Z</td></tr> </table>]]> </description> <TimeSpan> <begin>2017-11-11T19:25:00Z</begin> <end>2017-11-12T09:17:32Z</end> </TimeSpan> <Placemark> <name>Path</name> <styleUrl>#lineStyle</styleUrl> <LineString> <tessellate>1</tessellate> <coordinates> 2.292750,48.859380,32.00 2.291070,48.860250,33.00 … 1.090050,49.933690,18.00 1.089380,49.934100,4.00 </coordinates> </LineString> </Placemark> </Folder> </Folder> </Document> </kml> ==================END |