Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scls19fr/simplekml
Automatically exported from code.google.com/p/simplekml
https://github.com/scls19fr/simplekml
Last synced: about 1 month ago
JSON representation
Automatically exported from code.google.com/p/simplekml
- Host: GitHub
- URL: https://github.com/scls19fr/simplekml
- Owner: scls19fr
- Created: 2015-05-02T10:23:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-02T10:27:05.000Z (over 9 years ago)
- Last Synced: 2024-06-12T17:44:50.217Z (5 months ago)
- Language: Python
- Size: 785 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
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 everything documented in the KML Reference. With simplekml 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")See the http://simplekml.readthedocs.org for usage and reference.
Visit http://code.google.com/p/simplekml/ for the homepage.