I must use Python 3.2 and this means I must access the functionality in the GEOS dll via ctypes (with which I am not familiar). I can't use the Shapely library because it has not been ported to Python 3.x.
I need a function apparently not available in OGR (namely to merge/dissolve contiguous LINESTRINGS within MULTILINESTRINGS).
My plan is to open my shapefiles with OGR, cast the geometries I want as WKT MULTILINESTRINGS and pass this to GEOS where the magic will take place and then pull the result back again.
I have written this test to help me understand using GEOS through ctypes (it should just pass the wkt in and then write it back out again, nothing more):
import ctypes
lineWKT = "MULTILINESTRING((1 2, 3 4), (5 6, 7 8, 9 10), (11 12, 13 14))"
dllPath = r"C:\Geos\bin\geos_c.dll"
libGeos = ctypes.CDLL(dllPath)
reader = libGeos.GEOSWKTReader_create()
myGeom = libGeos.GEOSWKTReader_read(reader, lineWKT)
writer = libGeos.GEOSWKTWriter_create()
result = libGeos.GEOSWKTWriter_write(writer, myGeom)
print("myGeom:", myGeom)
print("Result:", result)
I get the following result:
myGeom: 0
Result: 0
Clearly I have not understood something fundamental! Any help in getting going would be very much appreciated. Thanks!