|
Revision 953
(checked in by seang, 1 year ago)
|
Improve description in readme
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
WorldMill |
|---|
| 2 |
========= |
|---|
| 3 |
|
|---|
| 4 |
WorldMill provides a smoother and more productive Python interface to the open |
|---|
| 5 |
source GIS community's most trusted geodata access library; doing for libgdal_ |
|---|
| 6 |
what lxml does for libxml2. WorldMill integrates readily with other Python GIS |
|---|
| 7 |
packages such as pyproj_, Rtree_, and Shapely_. |
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
Dependencies |
|---|
| 11 |
------------ |
|---|
| 12 |
|
|---|
| 13 |
WorldMill requires libgdal 1.3.2+. |
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
Building |
|---|
| 17 |
-------- |
|---|
| 18 |
|
|---|
| 19 |
From the distribution root:: |
|---|
| 20 |
|
|---|
| 21 |
$ ./cypsrc |
|---|
| 22 |
$ python setup.py build_ext --inplace |
|---|
| 23 |
$ PYTHONPATH=src python tests.py |
|---|
| 24 |
|
|---|
| 25 |
If you have ogr.py installed, you can compare to WorldMill:: |
|---|
| 26 |
|
|---|
| 27 |
$ PYTHONPATH=src python benchmark.py |
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
Usage |
|---|
| 31 |
----- |
|---|
| 32 |
|
|---|
| 33 |
See `docs/reading-data.txt`_ for examples. |
|---|
| 34 |
|
|---|
| 35 |
.. _libgdal: http://www.gdal.org |
|---|
| 36 |
.. _pyproj: http://pypi.python.org/pypi/pyproj/ |
|---|
| 37 |
.. _Rtree: http://pypi.python.org/pypi/Rtree/ |
|---|
| 38 |
.. _Shapely: http://pypi.python.org/pypi/Shapely/ |
|---|
| 39 |
.. _docs/reading-data.txt: http://trac.gispython.org/projects/PCL/browser/WorldMill/trunk/docs/reading-data.txt |
|---|
| 40 |
|
|---|