Idea:
Release ST_GEOMETRY functions code (on GitHub, or something like that)
Reasons:
Worth considering?
I wonder if it would be possible to view the ST_GEOMETRY function definition in a SQLite database where ST_GEOMETRY has been enabled? Load the SQLite ST_Geometry library
Edit:
It looks like the functions are stored in a .dll. So the answer is likely no.
--Load the ST_Geometry library on Windows. SELECT load_extension( 'c:\Program Files (x86)\ArcGIS\Desktop10.3\DatabaseSupport\SQLite\Windows32
\stgeometry_sqlite.dll', 'SDE_SQL_funcs_init' );
depends what language was used before compilation into a dll. There are good options for some languages (VB, .NET, C#), others require dumping it as assembly - If I had to guess though I'd bet the stgeometry_sqlite.dll is written in VB or .NET. Google ".NET Reflector"
note i'm not advising you to do anything.. only saying what's possible.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.