Skip to content

Commit 6cca9d1

Browse files
committed
Imported Upstream version 1.2.10
1 parent 781d44b commit 6cca9d1

32 files changed

+5704
-38
lines changed

CHANGES.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
=======
2+
CHANGES
3+
=======
4+
5+
1.2.10 (2011-05-09)
6+
-------------------
7+
- Add optional Cython speedups.
8+
- Add is_cww predicate to LinearRing.
9+
- Add function that forces orientation of Polygons.
10+
- Disable build of speedups on Windows pending packaging work.
11+
12+
1.2.9 (2011-03-31)
13+
------------------
14+
- Remove extra glob import.
15+
- Move examples to shapely.examples.
16+
- Add box() constructor for rectangular polygons.
17+
- Fix extraneous imports.
18+
119
1.2.8 (2011-12-03)
220
------------------
321
- New parallel_offset method (#6).

PKG-INFO

Lines changed: 204 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Metadata-Version: 1.0
22
Name: Shapely
3-
Version: 1.2.8
3+
Version: 1.2.10
44
Summary: Geometric objects, predicates, and operations
55
Home-page: http://trac.gispython.org/lab/wiki/Shapely
66
Author: Sean Gillies
77
Author-email: [email protected]
88
License: BSD
9-
Description: =======
10-
Shapely
11-
=======
9+
Description: ======
10+
README
11+
======
1212

1313
.. image:: http://farm3.static.flickr.com/2738/4511827859_b5822043b7_o_d.png
1414
:width: 800
@@ -162,6 +162,206 @@ Description: =======
162162
:trim:
163163
.. _Pleiades: http://pleiades.stoa.org
164164

165+
=======
166+
CHANGES
167+
=======
168+
169+
1.2.10 (2011-05-09)
170+
-------------------
171+
- Add optional Cython speedups.
172+
- Add is_cww predicate to LinearRing.
173+
- Add function that forces orientation of Polygons.
174+
- Disable build of speedups on Windows pending packaging work.
175+
176+
1.2.9 (2011-03-31)
177+
------------------
178+
- Remove extra glob import.
179+
- Move examples to shapely.examples.
180+
- Add box() constructor for rectangular polygons.
181+
- Fix extraneous imports.
182+
183+
1.2.8 (2011-12-03)
184+
------------------
185+
- New parallel_offset method (#6).
186+
- Support for Python 2.4.
187+
188+
1.2.7 (2010-11-05)
189+
------------------
190+
- Support for Windows eggs.
191+
192+
1.2.6 (2010-10-21)
193+
------------------
194+
- The geoms property of an empty collection yields [] instead of a ValueError
195+
(#3).
196+
- The coords and geometry type sproperties have the same behavior as above.
197+
- Ensure that z values carry through into products of operations (#4).
198+
199+
1.2.5 (2010-09-19)
200+
------------------
201+
- Stop distributing docs/_build.
202+
- Include library fallbacks in test_dlls.py for linux platform.
203+
204+
1.2.4 (2010-09-09)
205+
------------------
206+
- Raise AttributeError when there's no backend support for a method.
207+
- Raise OSError if libgeos_c.so (or variants) can't be found and loaded.
208+
- Add geos_c DLL loading support for linux platforms where find_library doesn't
209+
work.
210+
211+
1.2.3 (2010-08-17)
212+
------------------
213+
- Add mapping function.
214+
- Fix problem with GEOSisValidReason symbol for GEOS < 3.1.
215+
216+
1.2.2 (2010-07-23)
217+
------------------
218+
- Add representative_point method.
219+
220+
1.2.1 (2010-06-23)
221+
------------------
222+
- Fixed bounds of singular polygons.
223+
- Added shapely.validation.explain_validity function (#226).
224+
225+
1.2 (2010-05-27)
226+
----------------
227+
- Final release.
228+
229+
1.2rc2 (2010-05-26)
230+
-------------------
231+
- Add examples and tests to MANIFEST.in.
232+
- Release candidate 2.
233+
234+
1.2rc1 (2010-05-25)
235+
-------------------
236+
- Release candidate.
237+
238+
1.2b7 (2010-04-22)
239+
------------------
240+
- Memory leak associated with new empty geometry state fixed.
241+
242+
1.2b6 (2010-04-13)
243+
------------------
244+
- Broken GeometryCollection fixed.
245+
246+
1.2b5 (2010-04-09)
247+
------------------
248+
- Objects can be constructed from others of the same type, thereby making
249+
copies. Collections can be constructed from sequences of objects, also making
250+
copies.
251+
- Collections are now iterators over their component objects.
252+
- New code for manual figures, using the descartes package.
253+
254+
1.2b4 (2010-03-19)
255+
------------------
256+
- Adds support for the "sunos5" platform.
257+
258+
1.2b3 (2010-02-28)
259+
------------------
260+
- Only provide simplification implementations for GEOS C API >= 1.5.
261+
262+
1.2b2 (2010-02-19)
263+
------------------
264+
- Fix cascaded_union bug introduced in 1.2b1 (#212).
265+
266+
1.2b1 (2010-02-18)
267+
------------------
268+
- Update the README. Remove cruft from setup.py. Add some version 1.2 metadata
269+
regarding required Python version (>=2.5,<3) and external dependency
270+
(libgeos_c >= 3.1).
271+
272+
1.2a6 (2010-02-09)
273+
------------------
274+
- Add accessor for separate arrays of X and Y values (#210).
275+
276+
TODO: fill gap here
277+
278+
1.2a1 (2010-01-20)
279+
------------------
280+
- Proper prototyping of WKB writer, and avoidance of errors on 64-bit systems
281+
(#191).
282+
- Prototype libgeos_c functions in a way that lets py2exe apps import shapely
283+
(#189).
284+
285+
=========================
286+
1.2 Branched (2009-09-19)
287+
=========================
288+
289+
1.0.12 (2009-04-09)
290+
-------------------
291+
- Fix for references held by topology and predicate descriptors.
292+
293+
1.0.11 (2008-11-20)
294+
-------------------
295+
- Work around bug in GEOS 2.2.3, GEOSCoordSeq_getOrdinate not exported properly
296+
(#178).
297+
298+
1.0.10 (2008-11-17)
299+
-------------------
300+
- Fixed compatibility with GEOS 2.2.3 that was broken in 1.0.8 release (#176).
301+
302+
1.0.9 (2008-11-16)
303+
------------------
304+
- Find and load MacPorts libgeos.
305+
306+
1.0.8 (2008-11-01)
307+
------------------
308+
- Fill out GEOS function result and argument types to prevent faults on a
309+
64-bit arch.
310+
311+
1.0.7 (2008-08-22)
312+
------------------
313+
- Polygon rings now have the same dimensions as parent (#168).
314+
- Eliminated reference cycles in polygons (#169).
315+
316+
1.0.6 (2008-07-10)
317+
------------------
318+
- Fixed adaptation of multi polygon data.
319+
- Raise exceptions earlier from binary predicates.
320+
- Beginning distributing new windows DLLs (#166).
321+
322+
1.0.5 (2008-05-20)
323+
------------------
324+
- Added access to GEOS polygonizer function.
325+
- Raise exception when insufficient coordinate tuples are passed to LinearRing
326+
constructor (#164).
327+
328+
1.0.4 (2008-05-01)
329+
------------------
330+
- Disentangle Python and topological equality (#163).
331+
- Add shape(), a factory that copies coordinates from a geo interface provider.
332+
To be used instead of asShape() unless you really need to store coordinates
333+
outside shapely for efficient use in other code.
334+
- Cache GEOS geometries in adapters (#163).
335+
336+
1.0.3 (2008-04-09)
337+
------------------
338+
- Do not release GIL when calling GEOS functions (#158).
339+
- Prevent faults when chaining multiple GEOS operators (#159).
340+
341+
1.0.2 (2008-02-26)
342+
------------------
343+
- Fix loss of dimensionality in polygon rings (#155).
344+
345+
1.0.1 (2008-02-08)
346+
------------------
347+
- Allow chaining expressions involving coordinate sequences and geometry parts
348+
(#151).
349+
- Protect against abnormal use of coordinate accessors (#152).
350+
- Coordinate sequences now implement the numpy array protocol (#153).
351+
352+
1.0 (2008-01-18)
353+
----------------
354+
- Final release.
355+
356+
1.0 RC2 (2008-01-16)
357+
--------------------
358+
- Added temporary solution for #149.
359+
360+
1.0 RC1 (2008-01-14)
361+
--------------------
362+
- First release candidate
363+
364+
165365
Keywords: geometry topology gis
166366
Platform: UNKNOWN
167367
Classifier: Development Status :: 5 - Production/Stable

README.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
=======
2-
Shapely
3-
=======
1+
======
2+
README
3+
======
44

55
.. image:: http://farm3.static.flickr.com/2738/4511827859_b5822043b7_o_d.png
66
:width: 800

0 commit comments

Comments
 (0)