Metadata-Version: 1.0
Name: simplekml
Version: 0.6.2
Summary: A Simple KML creator
Home-page: http://code.google.com/p/simplekml/
Author: Kyle Lancaster
Author-email: kyle.lan@gmail.com
License: GNU General Public License
Description: 
        simplekml is a python package which enables you to generate KML with as little effort as possible.
        
        At the time of making this package nothing was available (at least I could not find anything) that could create KML files easily. You needed a lot of bloated code to even create a simple point. This is understandable because the KML standard is quite extensive, but what if you just work with the simple elements of KML like Document, Folder, Point, LineString and Polygon? This package supports those elements and more (MultiGeometry, Overlays) with advanced styling. This makes creating a KML file containing a point as simple as::
        
            import simplekml
            kml = simplekml.Kml()
            kml.newpoint(name="Kirstenbosch", coords=[(18.432314,-33.988862)])
            kml.save("botanicalgarden.kml")
        
        Please take note that this project is in its early stages. Everything seems to work, but bugs may crop up. If you would please test it and let me know if there are bugs, it would be appreciated.
        
        See the Wiki_ for usage and reference.
        
        .. _Wiki: http://code.google.com/p/simplekml/wiki/Welcome?tm=6
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Software Development :: Libraries :: Python Modules
