Skip to content

Commit 11f36a0

Browse files
committed
Imported Upstream version 1.4.3
1 parent 0e09ebf commit 11f36a0

10 files changed

+139
-102
lines changed

CHANGES.txt

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changes
22
=======
33

4+
1.4.3 (2014-10-01)
5+
------------------
6+
- Fix for endianness bug in WKB writer (#174).
7+
8+
1.4.2 (2014-09-29)
9+
------------------
10+
- Fix bungled 1.4.1 release (#176).
11+
412
1.4.1 (2014-09-23)
513
------------------
614
- Return of support for GEOS 3.2 (#176, #178).
@@ -21,11 +29,6 @@ Changes
2129
- Allow single-part geometries as argument to ops.cacaded_union() (#135).
2230
- Support affine transformations of LinearRings (#112).
2331

24-
1.3.3 (2014-07-23)
25-
------------------
26-
- Allow single-part geometries as argument to ops.cacaded_union() (#135).
27-
- Support affine transformations of LinearRings (#112).
28-
2932
1.3.2 (2014-05-13)
3033
------------------
3134
- Let LineString() take a sequence of Points (#130).

CREDITS.txt

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Patches contributed by:
1919
* Bertrand Gervais (https://github.com/BertrandGervais)
2020
* Marc Jansen (https://github.com/marcjansen)
2121
* Kelsey Jordahl (https://github.com/kjordahl)
22-
* Fr |eaigue| d |eaigue| ric Junod
22+
* Frédéric Junod
2323
* Thomas Kluyver (https://github.com/takluyver)
2424
* William Kyngesburye (https://github.com/kyngchaos)
2525
* Eric Lemoine
@@ -49,6 +49,4 @@ Additional help from:
4949
Major portions of this work were supported by a grant (for Pleiades_) from the
5050
U.S. National Endowment for the Humanities (http://www.neh.gov).
5151

52-
.. |eaigue| unicode:: U+00E9
53-
:trim:
5452
.. _Pleiades: http://pleiades.stoa.org

README.rst

+56-75
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ Manipulation and analysis of geometric objects in the Cartesian plane.
1212
:height: 400
1313

1414
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:
1921

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>`__
2224

2325
Requirements
2426
============
@@ -37,16 +39,10 @@ is on the system library path, and install from the Python package index.
3739

3840
.. code-block:: console
3941
40-
$ pip install shapely
42+
$ pip install shapely
4143
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).
5046

5147
Usage
5248
=====
@@ -56,15 +52,15 @@ buffering a point.
5652

5753
.. code-block:: pycon
5854
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
6561
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.
6864

6965
Integration
7066
===========
@@ -75,60 +71,60 @@ modules provide dumpers and loaders inspired by Python's pickle module.
7571

7672
.. code-block:: pycon
7773
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)'
8177
8278
All linear objects, such as the rings of a polygon (like ``patch`` above),
8379
provide the Numpy array interface.
8480

8581
.. code-block:: pycon
8682
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]])
9490
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
9692
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.
9894

9995
.. code-block:: pycon
10096
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, ...])
104100
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.
106102

107103
.. code-block:: pycon
108104
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
112108
113109
Numpy arrays of x and y must be transposed.
114110

115-
.. code-block::
111+
.. code-block:: pycon
116112
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
119115
120116
Shapely can also integrate with other Python GIS packages using data modeled
121117
after GeoJSON.
122118

123-
.. sourcecode:: pycon
119+
.. code-block:: pycon
124120
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]}
132128
133129
Development and Testing
134130
=======================
@@ -139,16 +135,16 @@ Use of a virtual environment is strongly recommended.
139135

140136
.. code-block:: console
141137
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 .
146142
147143
We use py.test to run Shapely's suite of unittests and doctests.
148144

149145
.. code-block:: console
150146
151-
(env)$ py.test tests
147+
(env)$ py.test tests
152148
153149
Roadmap and Maintenance
154150
=======================
@@ -157,27 +153,12 @@ Shapely 1.2.x is a maintenance-only branch which supports Python 2.4-2.6, but
157153
not Python 3+. There will be no new features in Shapely 1.2.x and only fixes
158154
for major bugs.
159155

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+.
166157

167158
Support
168159
=======
169160

170161
Please discuss Shapely with us at
171162
http://lists.gispython.org/mailman/listinfo/community.
172163

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.

setup.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,15 @@
4343
fp.write(version)
4444

4545
with open('README.rst', 'r', **open_kwds) as fp:
46-
readme_text = fp.read()
47-
readme_text = readme_text.replace(".. include:: CREDITS.txt", "")
46+
readme = fp.read()
4847

4948
with open('CREDITS.txt', 'r', **open_kwds) as fp:
5049
credits = fp.read()
5150

5251
with open('CHANGES.txt', 'r', **open_kwds) as fp:
53-
changes_text = fp.read()
52+
changes = fp.read()
53+
54+
long_description = readme + '\n\n' + credits + '\n\n' + changes
5455

5556
setup_args = dict(
5657
name = 'Shapely',
@@ -64,7 +65,7 @@
6465
maintainer = 'Sean Gillies',
6566
maintainer_email = '[email protected]',
6667
url = 'https://github.com/Toblerity/Shapely',
67-
long_description = readme_text + "\n" + credits + "\n" + changes_text,
68+
long_description = long_description,
6869
packages = [
6970
'shapely',
7071
'shapely.geometry',

shapely/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.4.1"
1+
__version__ = "1.4.3"

shapely/ctypes_declarations.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,9 @@ def prototype(lgeos, geos_version):
276276
lgeos.GEOSisRing.restype = c_byte
277277
lgeos.GEOSisRing.argtypes = [c_void_p]
278278

279-
lgeos.GEOSisClosed.restype = c_byte
280-
lgeos.GEOSisClosed.argtypes = [c_void_p]
279+
if geos_version >= (3, 3, 0):
280+
lgeos.GEOSisClosed.restype = c_byte
281+
lgeos.GEOSisClosed.argtypes = [c_void_p]
281282

282283
lgeos.GEOSHasZ.restype = c_byte
283284
lgeos.GEOSHasZ.argtypes = [c_void_p]

shapely/geometry/base.py

+12-2
Original file line numberDiff line numberDiff line change
@@ -560,8 +560,18 @@ def is_ring(self):
560560

561561
@property
562562
def is_closed(self):
563-
"""True if the geometry is closed, else False"""
564-
return bool(self.impl['is_closed'](self))
563+
"""True if the geometry is closed, else False
564+
565+
Applicable only to 1-D geometries."""
566+
if self.geom_type == 'LinearRing':
567+
return True
568+
elif self.geom_type == 'LineString':
569+
if 'is_closed' in self.impl:
570+
return bool(self.impl['is_closed'](self))
571+
else:
572+
return self.coords[0] == self.coords[-1]
573+
else:
574+
return False
565575

566576
@property
567577
def is_simple(self):

shapely/geos.py

+12-6
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,10 @@ class WKBWriter(object):
383383
_lgeos = None
384384
_writer = None
385385

386+
# EndianType enum in ByteOrderValues.h
387+
_ENDIAN_BIG = 0
388+
_ENDIAN_LITTLE = 1
389+
386390
# Establish default output setting
387391
defaults = {'output_dimension': 3}
388392

@@ -399,11 +403,13 @@ def output_dimension(self, value):
399403
@property
400404
def big_endian(self):
401405
"""Byte order is big endian, True (default) or False"""
402-
return bool(self._lgeos.GEOSWKBWriter_getByteOrder(self._writer))
406+
return (self._lgeos.GEOSWKBWriter_getByteOrder(self._writer) ==
407+
self._ENDIAN_BIG)
403408

404409
@big_endian.setter
405410
def big_endian(self, value):
406-
self._lgeos.GEOSWKBWriter_setByteOrder(self._writer, bool(value))
411+
self._lgeos.GEOSWKBWriter_setByteOrder(
412+
self._writer, self._ENDIAN_BIG if value else self._ENDIAN_LITTLE)
407413

408414
@property
409415
def include_srid(self):
@@ -545,7 +551,6 @@ def __init__(self, dll):
545551
self.GEOSisValid,
546552
self.GEOSisSimple,
547553
self.GEOSisRing,
548-
self.GEOSisClosed,
549554
self.GEOSHasZ):
550555
pred.errcheck = errcheck_predicate
551556

@@ -561,7 +566,6 @@ def __init__(self, dll):
561566
self.methods['has_z'] = self.GEOSHasZ
562567
self.methods['is_empty'] = self.GEOSisEmpty
563568
self.methods['is_ring'] = self.GEOSisRing
564-
self.methods['is_closed'] = self.GEOSisClosed
565569
self.methods['is_simple'] = self.GEOSisSimple
566570
self.methods['is_valid'] = self.GEOSisValid
567571
self.methods['disjoint'] = self.GEOSDisjoint
@@ -622,7 +626,6 @@ def __init__(self, dll):
622626
self.GEOSisValid,
623627
self.GEOSisSimple,
624628
self.GEOSisRing,
625-
self.GEOSisClosed,
626629
self.GEOSHasZ):
627630
pred.func.errcheck = errcheck_predicate
628631

@@ -640,7 +643,6 @@ def __init__(self, dll):
640643
self.methods['has_z'] = self.GEOSHasZ
641644
self.methods['is_empty'] = self.GEOSisEmpty
642645
self.methods['is_ring'] = self.GEOSisRing
643-
self.methods['is_closed'] = self.GEOSisClosed
644646
self.methods['is_simple'] = self.GEOSisSimple
645647
self.methods['is_valid'] = self.GEOSisValid
646648
self.methods['disjoint'] = self.GEOSDisjoint
@@ -713,7 +715,11 @@ def __init__(self, dll):
713715
attr.__name__ = func.__name__
714716
setattr(self, key, attr)
715717

718+
for pred in (self.GEOSisClosed,):
719+
pred.func.errcheck = errcheck_predicate
720+
716721
self.methods['unary_union'] = self.GEOSUnaryUnion
722+
self.methods['is_closed'] = self.GEOSisClosed
717723
self.methods['cascaded_union'] = self.methods['unary_union']
718724

719725

0 commit comments

Comments
 (0)