Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fastkml
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Aurélien Vermylen
fastkml
Commits
3caf41f6
Commit
3caf41f6
authored
Jun 26, 2012
by
Christian Ledermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add some documentation
parent
c8023946
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
282 additions
and
5 deletions
+282
-5
README.rst
README.rst
+24
-0
docs/HISTORY.txt
docs/HISTORY.txt
+7
-0
docs/LICENSE.GPL
docs/LICENSE.GPL
+222
-0
docs/LICENSE.txt
docs/LICENSE.txt
+16
-0
setup.py
setup.py
+13
-5
No files found.
README.rst
View file @
3caf41f6
Introduction
============
fastkml is a library to read, write and manipulate kml files. The aims
are to keep it simple and fast (using lxml if available). Fast refers to
the time you spend to write and read KML files as well as the time you
spend to get aquainted to the library or to create KML objects. It provides
a subset of KML and is aimed at documents that can be read from multiple
clients such as openlayers and google maps rather than to give you all
functionality that KML on google earth provides.
Geometries are handled as shapely objects. This is a restriction that I
can live with and you will seldom find KML files that implement more
complex geometries.
Limitations
===========
Geometries are limited to the geometry and multigeometry types shapely
provides (Point, LineString, Polygon, MultiPoint, MultiLineString,
MultiPolygon and LinearRing). While KML allows for more abstract
MultiGeometries consisting of a combination of Points, LineStrings
and LinearRings, this is not supported in fastkml
docs/HISTORY.txt
0 → 100644
View file @
3caf41f6
Changelog
=========
0.1 (unreleased)
----------------
- initial release
docs/LICENSE.GPL
0 → 100644
View file @
3caf41f6
This diff is collapsed.
Click to expand it.
docs/LICENSE.txt
0 → 100644
View file @
3caf41f6
collective.geo.kml is copyright Giorgio Borelli
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston,
MA 02111-1307 USA.
setup.py
View file @
3caf41f6
...
@@ -6,13 +6,21 @@ version = '0.0'
...
@@ -6,13 +6,21 @@ version = '0.0'
setup
(
name
=
'fastkml'
,
setup
(
name
=
'fastkml'
,
version
=
version
,
version
=
version
,
description
=
"Fast KML processing for python"
,
description
=
"Fast KML processing for python"
,
long_description
=
"""
\
long_description
=
open
(
Create and read KML Files"""
,
"README.rst"
).
read
()
+
"
\
n
"
+
classifiers
=
[],
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
open
(
os
.
path
.
join
(
"docs"
,
"HISTORY.txt"
)).
read
(),
keywords
=
''
,
classifiers
=
[
"Topic :: Scientific/Engineering :: GIS"
,
"Programming Language :: Python"
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: GNU General Public License (GPL)'
,
'Development Status :: 4 - Beta'
,
'Operating System :: OS Independent'
,
],
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords
=
'GIS KML Google Maps OpenLayers'
,
author
=
'Christian Ledermann'
,
author
=
'Christian Ledermann'
,
author_email
=
'christian.ledermann@gmail.com'
,
author_email
=
'christian.ledermann@gmail.com'
,
url
=
''
,
url
=
'
https://github.com/cleder/fastkml
'
,
license
=
'GPL'
,
license
=
'GPL'
,
packages
=
find_packages
(
exclude
=
[
'ez_setup'
,
'examples'
,
'tests'
]),
packages
=
find_packages
(
exclude
=
[
'ez_setup'
,
'examples'
,
'tests'
]),
include_package_data
=
True
,
include_package_data
=
True
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment