Spatialite

From Free Pascal wiki
Revision as of 13:04, 21 March 2012 by BigChimp (talk | contribs) (Spatialite is a nice extension to sqlite that allows GIS operations)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

What is spatialite

Spatialite is an extension to SQLite that allows you to use spatial data, including OpenStreetMap road networks, that allow e.g. routing between destinations. It's meant for standalone use and can be thought of as a smaller cousin of PostGIS, and allows you to program your own GIS (Geographical Information System).

The spatialite developers provide their own GUI, and projects such as QGIS support spatialite as well.

Spatialite in FPC/Lazarus

To use spatialite, you can either use an "all in one" package of spatialite and sqlite bundled into one big DLL/.so/library. Alternatively, you can use a regular sqlite DLL/.so/library, and load the sqlite library by calling the SQLite load_extension function. Support for this method has been added in FPC revision 20146, 21 January 2012. It is present in FPC fixes 2.6 and FPC trunk. <delphi>

 // Try to load extensions
 DBConnection.DatabaseName:='osm.sqlite';
 DBConnection.Open;
 DBConnection.LoadExtension('libspatialite-4.dll'); //Note: we need an open db before doing this

</delphi>

Once you've loaded the spatialite library, you can use spatial queries just as you would regular queries.

References

See also

SQLite