aboutsummaryrefslogtreecommitdiff
path: root/mapsparsing.py
diff options
context:
space:
mode:
authorLionel <lionel.miquel46@gmail.com>2018-10-21 14:53:51 +0200
committerLionel <lionel.miquel46@gmail.com>2018-10-21 14:53:51 +0200
commitb3ee49d174a35bbf4da6b1c60059795fdb88f710 (patch)
tree8b6c371d02eb30cd0ec874004dbabb0d8e93d33f /mapsparsing.py
parent7fbd76c1e51bf1cc3094b7d2286668cd839675fe (diff)
downloadrandopitons-b3ee49d174a35bbf4da6b1c60059795fdb88f710.tar.gz
randopitons-b3ee49d174a35bbf4da6b1c60059795fdb88f710.zip
Finally I'll rewrite it in bash i find it more readable than my python scripts. Will plan on a powershell version too
Diffstat (limited to 'mapsparsing.py')
-rw-r--r--mapsparsing.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/mapsparsing.py b/mapsparsing.py
deleted file mode 100644
index 6caa37a..0000000
--- a/mapsparsing.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import xml.etree.ElementTree as xmlp
-import re
-import errmsg as reeee
-import os
-def mapparsing(maptype,basicfilename):
- try:
- tree=xmlp.parse(basicfilename)
- root=tree.getroot()
- if maptype==1:
- filename=root[1][0].text+".gpx"
- elif maptype==2:
- thefile=open(basicfilename)
- for i in range(3):
- thefile.readline()
- filename=re.findall(r'\|(.*?)\|', thefile.readline())[0]+".trk"
- elif maptype==3:
- filename= root[0][10][1][0].text+".kml"
- os.rename(basicfilename,filename)
- except OSError, e:
- print reeee.os
- except xmlp.ParseError, er:
- print reeee.formaterr
- print format(er)
- os.remove(basicfilename)
- pass
-
-