Skip to content

Instantly share code, notes, and snippets.

/Bad

Created May 15, 2015 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/d3567fc6704a1d3e6c34 to your computer and use it in GitHub Desktop.
Save anonymous/d3567fc6704a1d3e6c34 to your computer and use it in GitHub Desktop.
def get_coords(xml):
oui = minidom.parseString(xml)
yes = oui.getElementsByTagName("gml:coordinates")
yeah = yes[0].toxml()
mhm = yeah[yeah.find(">")+1:yeah.rfind("</")]
return tuple(mhm.split(","))[::-1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment