Changeset 1562
- Timestamp:
- 02/28/10 07:05:04 (5 months ago)
- Location:
- Shapely/branches/1.2
- Files:
-
- 3 modified
-
CHANGES.txt (modified) (1 diff)
-
setup.py (modified) (1 diff)
-
shapely/impl.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Shapely/branches/1.2/CHANGES.txt
r1560 r1562 1 1 All tickets are children of http://trac.gispython.org/lab/ticket. 2 3 1.2b3 (2010-02-28) 4 ------------------ 5 - Only provide simplification implementations for GEOS C API >= 1.5. 2 6 3 7 1.2b2 (2010-02-19) -
Shapely/branches/1.2/setup.py
r1560 r1562 15 15 metadata_version = '1.2', 16 16 name = 'Shapely', 17 version = '1.2b 2',17 version = '1.2b3', 18 18 requires_python = '>=2.5,<3', 19 19 requires_external = 'libgeos_c (>=3.1)', -
Shapely/branches/1.2/shapely/impl.py
r1550 r1562 45 45 'within': (BinaryPredicate, 'within'), 46 46 'equals_exact': (BinaryPredicate, 'equals_exact'), 47 } 48 49 IMPL15 = { 47 50 'simplify': (UnaryTopologicalOp, 'simplify'), 48 51 'topology_preserve_simplify': 49 52 (UnaryTopologicalOp, 'topology_preserve_simplify'), 50 51 }52 53 IMPL15 = {54 53 'prepared_intersects': (BinaryPredicate, 'prepared_intersects'), 55 54 'prepared_contains': (BinaryPredicate, 'prepared_contains'),
