generate a closing tag. A call to render() generally returns the
element's text, and renders its children recursively.
"""
+
+ OPEN_TAG = ''
+ CLOSE_TAG = ''
def __init__(self, initial_text=''):
self.children = []
def render(self):
- kml = self.text
+ kml = self.OPEN_TAG
+ kml += self.text
for c in self.children:
kml += c.to_kml()
+ kml += self.CLOSE_TAG + "\n"
+
return kml
+ def print_kml(self):
+ print self.OPEN_TAG
+ self.render_to_stdout()
+ print self.CLOSE_TAG
+
+
+ def render_to_stdout(self):
+ if not (len(self.text) == 0):
+ print self.text
+
+ for c in self.children:
+ c.print_kml()
+
+
class Color(KmlObject):
- def to_kml(self):
- kml = '<color>'
- kml += self.render()
- kml += "</color>\n"
- return kml
+ OPEN_TAG = '<color>'
+ CLOSE_TAG = '</color>'
-
class Document(KmlObject):
+
+ OPEN_TAG = """<?xml version=\"1.0\" encoding=\"UTF-8\"?>
+<kml xmlns=\"http://www.opengis.net/kml/2.2\">
+<Document>"""
+
+ CLOSE_TAG = """</Document>
+ </kml>"""
def __init__(self, initial_text=''):
super(Document, self).__init__(initial_text)
self.styles = []
- def to_kml(self):
- kml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
- kml += "<kml xmlns=\"http://www.opengis.net/kml/2.2\">\n"
- kml += "<Document>\n"
-
- kml += self.render()
-
- kml += "</Document>\n"
- kml += "</kml>\n"
-
- return kml
-
-
def render(self):
kml = ''
return kml
+ def render_to_stdout(self):
+ for s in self.styles:
+ s.print_kml()
+
+ for c in self.children:
+ c.print_kml()
+
+
class Description(KmlObject):
- def to_kml(self):
- kml = '<description>'
- kml += self.render()
- kml += "</description>\n"
- return kml
-
+ OPEN_TAG = '<description>'
+ CLOSE_TAG = '</description>'
+
class Name(KmlObject):
- def to_kml(self):
- kml = '<name>'
- kml += self.render()
- kml += "</name>\n"
- return kml
-
+ OPEN_TAG = '<name>'
+ CLOSE_TAG = '</name>'
+
class Placemark(KmlObject):
-
- def to_kml(self):
- kml = "<Placemark>\n"
- kml += self.render()
- kml += "</Placemark>\n"
- return kml
-
-
+
+ OPEN_TAG = '<Placemark>'
+ CLOSE_TAG = '</Placemark>'
+
+
class PolyStyle(KmlObject):
-
- def to_kml(self):
- kml = "<PolyStyle>\n"
- kml += self.render()
- kml += "</PolyStyle>\n"
- return kml
-
+
+ OPEN_TAG = '<PolyStyle>'
+ CLOSE_TAG = '</PolyStyle>'
+
class Style(KmlObject):
-
- def __init__(self, initial_text='', initial_id=None):
+
+ OPEN_TAG = "<Style id=\"%s\">"
+ CLOSE_TAG = '</Style>'
+
+ def __init__(self, initial_text='', initial_id=''):
super(Style, self).__init__(initial_text)
self.id = initial_id
def to_kml(self):
kml = ''
-
- if (self.id == None):
- kml += "<Style>\n"
- else:
- kml += ("<Style id=\"%s\">\n" % self.id)
-
+ kml += (self.OPEN_TAG % self.id + "\n")
kml += self.render()
- kml += "</Style>\n"
+ kml += self.CLOSE_TAG + "\n"
return kml
+ def print_kml(self):
+ print (self.OPEN_TAG % self.id)
+ self.render_to_stdout()
+ print self.CLOSE_TAG
-class StyleUrl(KmlObject):
-
- def to_kml(self):
- kml = '<styleUrl>'
- kml += self.render()
- kml += "</styleUrl>\n"
- return kml
+
+class StyleUrl(KmlObject):
+
+ OPEN_TAG = '<styleUrl>'
+ CLOSE_TAG = '</styleUrl>'
+
class RawText(KmlObject):
pass