I am looking for technical information on how to integrate a new geospatially enabled relational database with GeoServer. In particular, I’m looking to integrate with Teradata.
I see some very high level deployment related documentation for certain DB platforms but no developer related documentation.
The only relevant thing I found was the following link related to the implementation for MS SQL Server.
The GeoTools library (http://geotools.org/) indeed used, by creating a geotools datastore and packaging it up in a jar you can ask GeoServer to work with your database.
There is a guide for making a datastore using “AbstractDataStore” here:
Since you are using a relational database you will actually want to choose a different base class; there is a “JDBC NG” implementation that serves as the super class for a range of formats; you can base your work on what they do.
I am looking for technical information on how to integrate a new geospatially enabled relational database with GeoServer. In particular, I’m looking to integrate with Teradata.
I see some very high level deployment related documentation for certain DB platforms but no developer related documentation.
The only relevant thing I found was the following link related to the implementation for MS SQL Server.