Changeset 1052
- Timestamp:
- 02/26/08 09:16:44
- Files:
-
- Shapely/trunk/CHANGES.txt (modified) (1 diff)
- Shapely/trunk/HISTORY.txt (modified) (1 diff)
- Shapely/trunk/README.txt (modified) (2 diffs)
- Shapely/trunk/setup.py (modified) (1 diff)
- Shapely/trunk/setup_windows.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Shapely/trunk/CHANGES.txt
r1046 r1052 1 1 All ticket numbers are rooted at http://trac.gispython.org/projects/PCL/ticket/ 2 2 3 1.0.1: 8 February 2008 4 ---------------------- 5 - Allow chaining expressions involving coordinate sequences and geometry parts 6 (#151). 7 - Protect against abnormal use of coordinate accessors (#152). 8 - Coordinate sequences now implement the numpy array protocol (#153). 3 1.0.2: 26 February 2008 4 ----------------------- 5 - Fix loss of dimensionality in polygon rings (#155). 6 7 Shapely/trunk/HISTORY.txt
r1021 r1052 1 1 All ticket numbers are rooted at http://trac.gispython.org/projects/PCL/ticket/ 2 3 1.0.1: 8 February 2008 4 ---------------------- 5 - Allow chaining expressions involving coordinate sequences and geometry parts 6 (#151). 7 - Protect against abnormal use of coordinate accessors (#152). 8 - Coordinate sequences now implement the numpy array protocol (#153). 9 2 10 3 11 1.0: 18 January 2008 Shapely/trunk/README.txt
r1049 r1052 2 2 ======= 3 3 4 Shapely is a Python package for programming with 2D geospatial geometries. It 5 is based on GEOS (http://geos.refractions.net). Shapely 1.0 is ignorant about 6 coordinate and reference systems. Projection responsibility is left to specific 7 applications. For more information, see: 4 Shapely is a Python package for manipulation and analysis of 2D geospatial 5 geometries. It is based on GEOS (http://geos.refractions.net). Shapely 1.0 is 6 not concerned with data formats or coordinate reference systems. 7 Responsibility for reading and writing data and projecting coordinates is left 8 to other packages like WorldMill_ and pyproj_. For more information, see: 8 9 9 10 * Shapely wiki_ … … 16 17 17 18 .. _CHANGES.txt: http://trac.gispython.org/projects/PCL/browser/Shapely/trunk/CHANGES.txt 18 .. _HISTROY.txt: http://trac.gispython.org/projects/PCL/browser/Shapely/trunk/HISTORY.txt 19 .. _HISTORY.txt: http://trac.gispython.org/projects/PCL/browser/Shapely/trunk/HISTORY.txt 20 .. _WorldMill: http://pypi.python.org/pypi/WorldMill 21 .. _pyproj: http://pypi.python.org/pypi/pyproj 19 22 20 23 Shapely/trunk/setup.py
r1045 r1052 12 12 13 13 setup(name = 'Shapely', 14 version = '1.0. 1',14 version = '1.0.2', 15 15 description = 'Geospatial geometries, predicates, and operations', 16 16 license = 'BSD', Shapely/trunk/setup_windows.py
r1021 r1052 12 12 13 13 setup(name = 'Shapely', 14 version = '1.0 ',14 version = '1.0.2', 15 15 description = 'Geospatial geometries, predicates, and operations', 16 16 license = 'BSD',
