@@ -12,13 +12,15 @@ Manipulation and analysis of geometric objects in the Cartesian plane.
12
12
:height: 400
13
13
14
14
Shapely is a BSD-licensed Python package for manipulation and analysis of
15
- planar geometric objects. It is based on the widely deployed GEOS _ (the engine
16
- of PostGIS _) and JTS _ (from which GEOS is ported) libraries. Shapely is not
17
- concerned with data formats or coordinate systems, but can be readily
18
- integrated with packages that are. For more details, see:
15
+ planar geometric objects. It is based on the widely deployed `GEOS
16
+ <http://trac.osgeo.org/geos/> `__ (the engine of `PostGIS
17
+ <http://postgis.org> `__) and `JTS
18
+ <http://www.vividsolutions.com/jts/jtshome.htm> `__ (from which GEOS is ported)
19
+ libraries. Shapely is not concerned with data formats or coordinate systems,
20
+ but can be readily integrated with packages that are. For more details, see:
19
21
20
- * Shapely manual _
21
- * Shapely `example apps `_
22
+ * Shapely on ` GitHub < https://github.com/Toblerity/Shapely >`__
23
+ * The Shapely `manual < http://toblerity.github.com/shapely/manual.html >`__
22
24
23
25
Requirements
24
26
============
@@ -37,16 +39,10 @@ is on the system library path, and install from the Python package index.
37
39
38
40
.. code-block :: console
39
41
40
- $ pip install shapely
42
+ $ pip install shapely
41
43
42
- Shapely is also provided by popular Python distributions like Enthought Canopy
43
- and Continuum Analytics Anaconda.
44
-
45
- .. warning :: Windows users:
46
- do not under any circumstances use pip (or easy_install) to uninstall
47
- Shapely versions < 1.2.17. Due to the way Shapely used to install its GEOS
48
- DLL and a distribute or setuptools bug, your Python installation may be
49
- broken by an uninstall command. Shapely 1.2.17 will uninstall safely.
44
+ Shapely is also provided by popular Python distributions like Canopy (Enthought)
45
+ and Anaconda (Continuum Analytics).
50
46
51
47
Usage
52
48
=====
@@ -56,15 +52,15 @@ buffering a point.
56
52
57
53
.. code-block :: pycon
58
54
59
- >>> from shapely.geometry import Point
60
- >>> patch = Point(0.0, 0.0).buffer(10.0)
61
- >>> patch
62
- <shapely.geometry.polygon.Polygon object at 0x...>
63
- >>> patch.area
64
- 313.65484905459385
55
+ >>> from shapely.geometry import Point
56
+ >>> patch = Point(0.0, 0.0).buffer(10.0)
57
+ >>> patch
58
+ <shapely.geometry.polygon.Polygon object at 0x...>
59
+ >>> patch.area
60
+ 313.65484905459385
65
61
66
- See the manual _ for comprehensive usage snippets and the dissolve.py and
67
- intersect.py ` example apps `_ .
62
+ See the manual for comprehensive usage snippets and the dissolve.py and
63
+ intersect.py examples .
68
64
69
65
Integration
70
66
===========
@@ -75,60 +71,60 @@ modules provide dumpers and loaders inspired by Python's pickle module.
75
71
76
72
.. code-block :: pycon
77
73
78
- >>> from shapely.wkt import dumps, loads
79
- >>> dumps(loads('POINT (0 0)'))
80
- 'POINT (0.0000000000000000 0.0000000000000000)'
74
+ >>> from shapely.wkt import dumps, loads
75
+ >>> dumps(loads('POINT (0 0)'))
76
+ 'POINT (0.0000000000000000 0.0000000000000000)'
81
77
82
78
All linear objects, such as the rings of a polygon (like ``patch `` above),
83
79
provide the Numpy array interface.
84
80
85
81
.. code-block :: pycon
86
82
87
- >>> import numpy as np
88
- >>> np.array(patch.exterior)
89
- array([[ 1.00000000e+01, 0.00000000e+00],
90
- [ 9.95184727e+00, -9.80171403e-01],
91
- [ 9.80785280e+00, -1.95090322e+00],
92
- ...
93
- [ 1.00000000e+01, 0.00000000e+00]])
83
+ >>> import numpy as np
84
+ >>> np.array(patch.exterior)
85
+ array([[ 1.00000000e+01, 0.00000000e+00],
86
+ [ 9.95184727e+00, -9.80171403e-01],
87
+ [ 9.80785280e+00, -1.95090322e+00],
88
+ ...
89
+ [ 1.00000000e+01, 0.00000000e+00]])
94
90
95
- That yields a Numpy array of `[x, y] ` arrays. This is not always exactly what one
91
+ That yields a Numpy array of `` [x, y] ` ` arrays. This is not always exactly what one
96
92
wants for plotting shapes with Matplotlib (for example), so Shapely adds
97
- a `xy ` property for obtaining separate arrays of coordinate x and y values.
93
+ a `` xy ` ` property for obtaining separate arrays of coordinate x and y values.
98
94
99
95
.. code-block :: pycon
100
96
101
- >>> x, y = patch.exterior.xy
102
- >>> np.array(x)
103
- array([ 1.00000000e+01, 9.95184727e+00, 9.80785280e+00, ...])
97
+ >>> x, y = patch.exterior.xy
98
+ >>> np.array(x)
99
+ array([ 1.00000000e+01, 9.95184727e+00, 9.80785280e+00, ...])
104
100
105
- Numpy arrays of `[x, y] ` arrays can also be adapted to Shapely linestrings.
101
+ Numpy arrays of `` [x, y] ` ` arrays can also be adapted to Shapely linestrings.
106
102
107
103
.. code-block :: pycon
108
104
109
- >>> from shapely.geometry import LineString
110
- >>> LineString(np.array(patch.exterior)).length
111
- 62.806623139095073
105
+ >>> from shapely.geometry import LineString
106
+ >>> LineString(np.array(patch.exterior)).length
107
+ 62.806623139095073
112
108
113
109
Numpy arrays of x and y must be transposed.
114
110
115
- .. code-block ::
111
+ .. code-block :: pycon
116
112
117
- >>> LineString(np.transpose(np.array(patch.exterior.xy))).length
118
- 62.80662313909507
113
+ >>> LineString(np.transpose(np.array(patch.exterior.xy))).length
114
+ 62.80662313909507
119
115
120
116
Shapely can also integrate with other Python GIS packages using data modeled
121
117
after GeoJSON.
122
118
123
- .. sourcecode :: pycon
119
+ .. code-block :: pycon
124
120
125
- >>> import json
126
- >>> from shapely.geometry import mapping, shape
127
- >>> s = shape(json.loads(' {"type": "Point", "coordinates": [0.0, 0.0]}' ))
128
- >>> s
129
- <shapely.geometry.point.Point object at 0x...>
130
- >>> print (json.dumps(mapping(s)))
131
- {"type": "Point", "coordinates": [0.0, 0.0]}
121
+ >>> import json
122
+ >>> from shapely.geometry import mapping, shape
123
+ >>> s = shape(json.loads('{"type": "Point", "coordinates": [0.0, 0.0]}'))
124
+ >>> s
125
+ <shapely.geometry.point.Point object at 0x...>
126
+ >>> print(json.dumps(mapping(s)))
127
+ {"type": "Point", "coordinates": [0.0, 0.0]}
132
128
133
129
Development and Testing
134
130
=======================
@@ -139,16 +135,16 @@ Use of a virtual environment is strongly recommended.
139
135
140
136
.. code-block :: console
141
137
142
- $ virtualenv .
143
- $ source bin/activate
144
- (env)$ pip install -r requirements-dev.txt
145
- (env)$ pip install -e .
138
+ $ virtualenv .
139
+ $ source bin/activate
140
+ (env)$ pip install -r requirements-dev.txt
141
+ (env)$ pip install -e .
146
142
147
143
We use py.test to run Shapely's suite of unittests and doctests.
148
144
149
145
.. code-block :: console
150
146
151
- (env)$ py.test tests
147
+ (env)$ py.test tests
152
148
153
149
Roadmap and Maintenance
154
150
=======================
@@ -157,27 +153,12 @@ Shapely 1.2.x is a maintenance-only branch which supports Python 2.4-2.6, but
157
153
not Python 3+. There will be no new features in Shapely 1.2.x and only fixes
158
154
for major bugs.
159
155
160
- Shapely 1.3.x is a maintenance-only branch supporting Pythons 2.7 and 3+.
161
-
162
- "Shapely 3000" is the name of the next milestone. New features will include
163
- vectorized operations, better integration with IPython Notebook, support for
164
- fixed precision models, and more. Less ctypes and more Cython is another theme
165
- in this branch. A 1.4 release should come out of this by Summer, 2014.
156
+ Shapely 1.4.x is a maintenance-only branch supporting Pythons 2.7 and 3.3+.
166
157
167
158
Support
168
159
=======
169
160
170
161
Please discuss Shapely with us at
171
162
http://lists.gispython.org/mailman/listinfo/community.
172
163
173
- Bugs may be reported at https://github.com/Toblerity/Shapely.
174
-
175
- .. include :: CREDITS.txt
176
-
177
- .. _JTS : http://www.vividsolutions.com/jts/jtshome.htm
178
- .. _PostGIS : http://postgis.org
179
- .. _GEOS : http://trac.osgeo.org/geos/
180
- .. _example apps : https://github.com/Toblerity/shapely/tree/master/shapely/examples
181
- .. _manual : http://toblerity.github.com/shapely/manual.html
182
- .. _Pleiades : http://pleiades.stoa.org
183
-
164
+ Bugs may be reported at https://github.com/Toblerity/Shapely/issues.
0 commit comments