From: Michael Orlitzky Date: Sun, 25 Oct 2009 22:09:44 +0000 (-0400) Subject: Added the LineString class. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=commitdiff_plain;h=036e4f51e67820e245ae761b5cdf1169ab3b2c36 Added the LineString class. --- diff --git a/src/KML.py b/src/KML.py index f96adb2..1f42898 100644 --- a/src/KML.py +++ b/src/KML.py @@ -110,6 +110,69 @@ class Description(KmlObject): +class LineString(KmlObject): + + OPEN_TAG = '' + CLOSE_TAG = '' + + @classmethod + def parse_linestrings(self, kml): + """ + Parse each ... block from the KML. + """ + linestrings = [] + + search_idx = kml.find(self.OPEN_TAG, 0) + + while (search_idx != -1): + # No reason to keep the tag around. + ls_start = search_idx + len(self.OPEN_TAG) + ls_tag_end = kml.find(self.CLOSE_TAG, ls_start) + ls = kml[ ls_start : ls_tag_end ] + linestrings.append(ls) + search_idx = kml.find(self.OPEN_TAG, (ls_tag_end + len(self.CLOSE_TAG))) + + return linestrings + + + @classmethod + def parse_coordinates_from_linestrings(self, linestrings): + coords = [] + + for ls in linestrings: + c_tag_start = ls.find('') + c_start = c_tag_start + len('') + c_end = ls.find('') + c = ls[ c_start : c_end ] + coords.append(c) + + return coords + + + @classmethod + def tuples_from_kml(self, kml): + """ + Parse one or more linestrings from a KML document. + Return a list of tuples. + """ + ls = self.parse_linestrings(kml) + cs = self.parse_coordinates_from_linestrings(ls) + + tuples = [] + + for c in cs: + pointstrings = c.strip().split() + for point in pointstrings: + components = point.strip().split(',') + if (len(components) >= 2): + # Project the three-dimensional vector onto the + # x-y plane. I don't think we're going to run + # in to any linestrings in 3d. + tuples.append( (float(components[0]), float(components[1])) ) + + return tuples + + class Name(KmlObject): OPEN_TAG = ''