You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I talked to my colleague Paul Ramsey about how to integrate this into PostGIS, and he came up with an alternative. See below:
Their code could be an extension that consumes WKB and outputs WKB
Requires no dependency on postgis at compile time
And just has a couple SQL functions that take in geometry, output wkb, hand to the internal functions, etc
Basically, that's how I did the pgpointcloud postgis integration
Pointcloud has no compile-time dependency on postgis
And all the interaction is via wkb in bytea structures
Makes it easy to write add-ons without the overhead of getting into the postgis build
The text was updated successfully, but these errors were encountered:
hey @hugoledoux I'm afraid my programming skills are mostly on the javascript side of the spectrum ;-) so I won't be able to help much here unfortunately.
Thanks for your presentation at #osgeonl today.
I talked to my colleague Paul Ramsey about how to integrate this into PostGIS, and he came up with an alternative. See below:
Their code could be an extension that consumes WKB and outputs WKB
Requires no dependency on postgis at compile time
And just has a couple SQL functions that take in geometry, output wkb, hand to the internal functions, etc
Basically, that's how I did the pgpointcloud postgis integration
Pointcloud has no compile-time dependency on postgis
And all the interaction is via wkb in bytea structures
Makes it easy to write add-ons without the overhead of getting into the postgis build
The text was updated successfully, but these errors were encountered: