Changeset 1157
- Timestamp:
- 11/19/08 08:30:14 (16 months ago)
- Location:
- Shapely/trunk
- Files:
-
- 5 modified
-
CHANGES.txt (modified) (1 diff)
-
GEOS-C-API.txt (modified) (1 diff)
-
setup.py (modified) (1 diff)
-
setup_windows.py (modified) (1 diff)
-
shapely/ctypes_declarations.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Shapely/trunk/CHANGES.txt
r1150 r1157 1 1 All tickets are children of http://trac.gispython.org/lab/ticket. 2 3 1.0.11 (2008-11-19) 4 ------------------- 5 - Apparently, Debian's 2.2.3 C lib doesn't export a GEOSCoordSeq_getOrdinate 6 (#178). 7 8 1.0.10 (2008-11-17) 9 ------------------- 10 - Fixed compatibility with GEOS 2.2.3 that was broken in 1.0.8 release (#176). 2 11 3 12 1.0.9 (2008-11-16) -
Shapely/trunk/GEOS-C-API.txt
r1153 r1157 48 48 lgeos.GEOSWKBWriter_setIncludeSRID.restype = None 49 49 lgeos.GEOSWKBWriter_setIncludeSRID.argtypes = [ctypes.c_void_p, ctypes.c_char] 50 51 Furthermore, the following unneeded declarations are removed to avoid problems 52 with Debian's 2.2.3 package: 53 54 lgeos.GEOSCoordSeq_getOrdinate.restype = ctypes.c_int 55 lgeos.GEOSCoordSeq_getOrdinate.argtypes = [ctypes.c_void_p, ctypes.c_uint, ctypes.c_uint, ctypes.c_void_p] -
Shapely/trunk/setup.py
r1150 r1157 11 11 12 12 setup(name = 'Shapely', 13 version = '1.0. 9',13 version = '1.0.11', 14 14 description = 'Geospatial geometries, predicates, and operations', 15 15 license = 'BSD', -
Shapely/trunk/setup_windows.py
r1150 r1157 11 11 12 12 setup(name = 'Shapely', 13 version = '1.0. 9',13 version = '1.0.11', 14 14 description = 'Geospatial geometries, predicates, and operations', 15 15 license = 'BSD', -
Shapely/trunk/shapely/ctypes_declarations.py
r1153 r1157 51 51 lgeos.GEOSCoordSeq_getZ.argtypes = [ctypes.c_void_p, ctypes.c_uint, ctypes.c_void_p] 52 52 53 lgeos.GEOSCoordSeq_getOrdinate.restype = ctypes.c_int54 lgeos.GEOSCoordSeq_getOrdinate.argtypes = [ctypes.c_void_p, ctypes.c_uint, ctypes.c_uint, ctypes.c_void_p]55 56 53 lgeos.GEOSCoordSeq_getSize.restype = ctypes.c_int 57 54 lgeos.GEOSCoordSeq_getSize.argtypes = [ctypes.c_void_p, ctypes.c_void_p] … … 206 203 lgeos.GEOSDistance.restype = ctypes.c_int 207 204 lgeos.GEOSDistance.argtypes = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p] 208
