paulsmith / gogeos

Go library for spatial data operations and geometric algorithms (Go bindings for GEOS)
http://paulsmith.github.io/gogeos/
MIT License
280 stars 79 forks source link

Doesn't work with GOMAXPROCS > 1 #5

Closed paulsmith closed 11 years ago

paulsmith commented 11 years ago

Because of global GEOS handle. Each thread needs its own handle, or access to the handle should be protected with a lock.

paulsmith commented 11 years ago

Fixed by bf60733