Skip to content

Commit 8eb6d6f

Browse files
committed
Imported Upstream version 1.2.14
1 parent 3160fc7 commit 8eb6d6f

19 files changed

+338
-136
lines changed

CHANGES.txt

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
=======
2-
CHANGES
2+
Changes
33
=======
44

5+
1.2.14 (2012-01-23)
6+
-------------------
7+
- A geometry's coords property is now sliceable, yielding a list of coordinate
8+
values.
9+
- Homogeneous collections are now sliceable, yielding a new collection of the
10+
same type.
11+
512
1.2.13 (2011-09-16)
613
-------------------
7-
- Fixed errors in speedups on 32bit systems when GEOS references memory above 2GB.
14+
- Fixed errors in speedups on 32bit systems when GEOS references memory above
15+
2GB.
816
- Add shapely.__version__ attribute.
917
- Update the manual.
1018

@@ -139,9 +147,7 @@ TODO: fill gap here
139147
- Prototype libgeos_c functions in a way that lets py2exe apps import shapely
140148
(#189).
141149

142-
=========================
143150
1.2 Branched (2009-09-19)
144-
=========================
145151

146152
1.0.12 (2009-04-09)
147153
-------------------

CREDITS.txt

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Patches contributed by:
1212
* Eric Lemoine
1313
* Jonathan Tartley
1414
* Kristian Thy
15+
* Mike Toews (https://github.com/mwtoews)
1516

1617
Additional help from:
1718

PKG-INFO

+25-21
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
Metadata-Version: 1.0
22
Name: Shapely
3-
Version: 1.2.13
3+
Version: 1.2.14
44
Summary: Geometric objects, predicates, and operations
55
Home-page: https://github.com/sgillies/shapely
66
Author: Sean Gillies
77
Author-email: [email protected]
88
License: BSD
9-
Description: =======
10-
Shapely
11-
=======
9+
Description: ======
10+
README
11+
======
1212

13-
PostGIS-ish operations outside a database context for Pythoneers and Pythonistas
13+
PostGIS-ish operations outside a database context for Pythoneers and
14+
Pythonistas.
1415

1516
.. image:: http://farm3.static.flickr.com/2738/4511827859_b5822043b7_o_d.png
1617
:width: 800
@@ -107,7 +108,7 @@ Description: =======
107108
Testing
108109
=======
109110

110-
Shapely uses a Zope-stye suite of unittests and doctests, excercised via
111+
Shapely uses a Zope-stye suite of unittests and doctests, exercised via
111112
setup.py.::
112113

113114
$ python setup.py test
@@ -118,7 +119,7 @@ Description: =======
118119
Support
119120
=======
120121

121-
Bugs may be reported and questions asked via https://github.com/sgillies/shapely.
122+
Bugs may be reported and questions asked via https://github.com/Toblerity/Shapely.
122123

123124
Credits
124125
=======
@@ -128,22 +129,23 @@ Description: =======
128129
* Sean Gillies
129130
* Aron Bierbaum
130131
* Kai Lautaportti
132+
* Oliver Tonnhofer
131133

132134
Patches contributed by:
133135

134136
* Howard Butler
135-
* Fr |eacute| d |eacute| ric Junod
136-
* |Eacute| ric Lemoine
137+
* Frédéric Junod
138+
* Éric Lemoine
137139
* Jonathan Tartley
138140
* Kristian Thy
139-
* Oliver Tonnhofer
141+
* Mike Toews (https://github.com/mwtoews)
140142

141143
Additional help from:
142144

143145
* Justin Bronn (GeoDjango) for ctypes inspiration
144146
* Martin Davis (JTS)
145147
* Jaakko Salli for the Windows distributions
146-
* Sandro Santilli, Mateusz Loskot, Paul Ramsey, et al (GEOS Project)
148+
* Sandro Santilli, Mateusz Loskot, Paul Ramsey, et al (GEOS_ Project)
147149

148150
Major portions of this work were supported by a grant (for Pleiades_) from the
149151
U.S. National Endowment for the Humanities (http://www.neh.gov).
@@ -153,20 +155,24 @@ Description: =======
153155
.. _GEOS: http://trac.osgeo.org/geos/
154156
.. _example apps: http://trac.gispython.org/lab/wiki/Examples
155157
.. _wiki: http://trac.gispython.org/lab/wiki/Shapely
156-
.. _manual: http://gispython.org/shapely/docs/1.2
157-
.. |eacute| unicode:: U+00E9
158-
:trim:
159-
.. |Eacute| unicode:: U+00C9
160-
:trim:
158+
.. _manual: http://toblerity.github.com/shapely/manual.html
161159
.. _Pleiades: http://pleiades.stoa.org
162160

161+
162+
Changes
163163
=======
164-
CHANGES
165-
=======
164+
165+
1.2.14 (2012-01-23)
166+
-------------------
167+
- A geometry's coords property is now sliceable, yielding a list of coordinate
168+
values.
169+
- Homogeneous collections are now sliceable, yielding a new collection of the
170+
same type.
166171

167172
1.2.13 (2011-09-16)
168173
-------------------
169-
- Fixed errors in speedups on 32bit systems when GEOS references memory above 2GB.
174+
- Fixed errors in speedups on 32bit systems when GEOS references memory above
175+
2GB.
170176
- Add shapely.__version__ attribute.
171177
- Update the manual.
172178

@@ -301,9 +307,7 @@ Description: =======
301307
- Prototype libgeos_c functions in a way that lets py2exe apps import shapely
302308
(#189).
303309

304-
=========================
305310
1.2 Branched (2009-09-19)
306-
=========================
307311

308312
1.0.12 (2009-04-09)
309313
-------------------

README.rst

+14-15
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
=======
2-
Shapely
3-
=======
1+
======
2+
README
3+
======
44

5-
PostGIS-ish operations outside a database context for Pythoneers and Pythonistas
5+
PostGIS-ish operations outside a database context for Pythoneers and
6+
Pythonistas.
67

78
.. image:: http://farm3.static.flickr.com/2738/4511827859_b5822043b7_o_d.png
89
:width: 800
@@ -99,7 +100,7 @@ Numpy arrays can also be adapted to Shapely linestrings::
99100
Testing
100101
=======
101102

102-
Shapely uses a Zope-stye suite of unittests and doctests, excercised via
103+
Shapely uses a Zope-stye suite of unittests and doctests, exercised via
103104
setup.py.::
104105

105106
$ python setup.py test
@@ -110,7 +111,7 @@ supported well by nose.
110111
Support
111112
=======
112113

113-
Bugs may be reported and questions asked via https://github.com/sgillies/shapely.
114+
Bugs may be reported and questions asked via https://github.com/Toblerity/Shapely.
114115

115116
Credits
116117
=======
@@ -120,22 +121,23 @@ Shapely is written by:
120121
* Sean Gillies
121122
* Aron Bierbaum
122123
* Kai Lautaportti
124+
* Oliver Tonnhofer
123125

124126
Patches contributed by:
125127

126128
* Howard Butler
127-
* Fr |eacute| d |eacute| ric Junod
128-
* |Eacute| ric Lemoine
129+
* Frédéric Junod
130+
* Éric Lemoine
129131
* Jonathan Tartley
130132
* Kristian Thy
131-
* Oliver Tonnhofer
133+
* Mike Toews (https://github.com/mwtoews)
132134

133135
Additional help from:
134136

135137
* Justin Bronn (GeoDjango) for ctypes inspiration
136138
* Martin Davis (JTS)
137139
* Jaakko Salli for the Windows distributions
138-
* Sandro Santilli, Mateusz Loskot, Paul Ramsey, et al (GEOS Project)
140+
* Sandro Santilli, Mateusz Loskot, Paul Ramsey, et al (GEOS_ Project)
139141

140142
Major portions of this work were supported by a grant (for Pleiades_) from the
141143
U.S. National Endowment for the Humanities (http://www.neh.gov).
@@ -145,9 +147,6 @@ U.S. National Endowment for the Humanities (http://www.neh.gov).
145147
.. _GEOS: http://trac.osgeo.org/geos/
146148
.. _example apps: http://trac.gispython.org/lab/wiki/Examples
147149
.. _wiki: http://trac.gispython.org/lab/wiki/Shapely
148-
.. _manual: http://gispython.org/shapely/docs/1.2
149-
.. |eacute| unicode:: U+00E9
150-
:trim:
151-
.. |Eacute| unicode:: U+00C9
152-
:trim:
150+
.. _manual: http://toblerity.github.com/shapely/manual.html
153151
.. _Pleiades: http://pleiades.stoa.org
152+

Shapely.egg-info/PKG-INFO

+25-21
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
Metadata-Version: 1.0
22
Name: Shapely
3-
Version: 1.2.13
3+
Version: 1.2.14
44
Summary: Geometric objects, predicates, and operations
55
Home-page: https://github.com/sgillies/shapely
66
Author: Sean Gillies
77
Author-email: [email protected]
88
License: BSD
9-
Description: =======
10-
Shapely
11-
=======
9+
Description: ======
10+
README
11+
======
1212

13-
PostGIS-ish operations outside a database context for Pythoneers and Pythonistas
13+
PostGIS-ish operations outside a database context for Pythoneers and
14+
Pythonistas.
1415

1516
.. image:: http://farm3.static.flickr.com/2738/4511827859_b5822043b7_o_d.png
1617
:width: 800
@@ -107,7 +108,7 @@ Description: =======
107108
Testing
108109
=======
109110

110-
Shapely uses a Zope-stye suite of unittests and doctests, excercised via
111+
Shapely uses a Zope-stye suite of unittests and doctests, exercised via
111112
setup.py.::
112113

113114
$ python setup.py test
@@ -118,7 +119,7 @@ Description: =======
118119
Support
119120
=======
120121

121-
Bugs may be reported and questions asked via https://github.com/sgillies/shapely.
122+
Bugs may be reported and questions asked via https://github.com/Toblerity/Shapely.
122123

123124
Credits
124125
=======
@@ -128,22 +129,23 @@ Description: =======
128129
* Sean Gillies
129130
* Aron Bierbaum
130131
* Kai Lautaportti
132+
* Oliver Tonnhofer
131133

132134
Patches contributed by:
133135

134136
* Howard Butler
135-
* Fr |eacute| d |eacute| ric Junod
136-
* |Eacute| ric Lemoine
137+
* Frédéric Junod
138+
* Éric Lemoine
137139
* Jonathan Tartley
138140
* Kristian Thy
139-
* Oliver Tonnhofer
141+
* Mike Toews (https://github.com/mwtoews)
140142

141143
Additional help from:
142144

143145
* Justin Bronn (GeoDjango) for ctypes inspiration
144146
* Martin Davis (JTS)
145147
* Jaakko Salli for the Windows distributions
146-
* Sandro Santilli, Mateusz Loskot, Paul Ramsey, et al (GEOS Project)
148+
* Sandro Santilli, Mateusz Loskot, Paul Ramsey, et al (GEOS_ Project)
147149

148150
Major portions of this work were supported by a grant (for Pleiades_) from the
149151
U.S. National Endowment for the Humanities (http://www.neh.gov).
@@ -153,20 +155,24 @@ Description: =======
153155
.. _GEOS: http://trac.osgeo.org/geos/
154156
.. _example apps: http://trac.gispython.org/lab/wiki/Examples
155157
.. _wiki: http://trac.gispython.org/lab/wiki/Shapely
156-
.. _manual: http://gispython.org/shapely/docs/1.2
157-
.. |eacute| unicode:: U+00E9
158-
:trim:
159-
.. |Eacute| unicode:: U+00C9
160-
:trim:
158+
.. _manual: http://toblerity.github.com/shapely/manual.html
161159
.. _Pleiades: http://pleiades.stoa.org
162160

161+
162+
Changes
163163
=======
164-
CHANGES
165-
=======
164+
165+
1.2.14 (2012-01-23)
166+
-------------------
167+
- A geometry's coords property is now sliceable, yielding a list of coordinate
168+
values.
169+
- Homogeneous collections are now sliceable, yielding a new collection of the
170+
same type.
166171

167172
1.2.13 (2011-09-16)
168173
-------------------
169-
- Fixed errors in speedups on 32bit systems when GEOS references memory above 2GB.
174+
- Fixed errors in speedups on 32bit systems when GEOS references memory above
175+
2GB.
170176
- Add shapely.__version__ attribute.
171177
- Update the manual.
172178

@@ -301,9 +307,7 @@ Description: =======
301307
- Prototype libgeos_c functions in a way that lets py2exe apps import shapely
302308
(#189).
303309

304-
=========================
305310
1.2 Branched (2009-09-19)
306-
=========================
307311

308312
1.0.12 (2009-04-09)
309313
-------------------

Shapely.egg-info/SOURCES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ shapely/tests/test_doctests.py
7474
shapely/tests/test_emptiness.py
7575
shapely/tests/test_equality.py
7676
shapely/tests/test_geomseq.py
77+
shapely/tests/test_getitem.py
7778
shapely/tests/test_linear_referencing.py
7879
shapely/tests/test_mapping.py
7980
shapely/tests/test_prepared.py

0 commit comments

Comments
 (0)