Hi Jan, Jan Tappenbeck wrote: > Kennt einer von Euch das Format ? > > # Data read from : GPS III+ Software Version 2.06 > #Thu Dec 12 21:35:58 2002 GMT > D WGS-84 > M UTM > ! -w coblack -w ctblue -w sovs -w stvs -w ane > # W WIMHZ1 32U 509349.8 6012960.2 Thu Dec 12 21:33:42 2002 CRTD > 12:27 12-DEC-02; 18;3;0 > # Beginn Wiemerstedter Gehölz > W 97R 32U 506902.0 6020319.0 Tue Jan 21 13:26:11 2003 > ; 18;3;0
ich hatte letztens so was ähnliches: F ID---- Zne Easting Northing Symbol------- T Alt(m) Comment W LMK001 37N 442135 0779279 filled circle I 1699.0 W LMK002 37N 442002 0779344 filled circle I 1699.0 W LMK003 37N 441840 0779442 filled circle I 1688.0 W LMK004 37N 441700 0779530 filled circle I 1702.0 Die Felder waren aber glaube ich anders sortiert. Ich habe die relevanten Daten via sed/cut/bash in csv gewandelt und dann mit GPSBabel in gpx files: === convert.sh === for datei in *.txt ; do echo $datei; (echo utm_z,utm_c,utm_e,utm_n; (cat $datei |grep ^W|sed -f sed.script | cut -d, -f 2,3,4,5)) > $datei.csv; done for datei in *.csv; do gpsbabel -i unicsv -f $datei -x transform,trk=wpt,del -o gpx -F $datei.gpx; done === sed.script === s/37N/37,N/g; s/ [ ]*/,/g; p; Viele Grüße, Alexander _______________________________________________ Talk-de mailing list [email protected] http://lists.openstreetmap.org/listinfo/talk-de

