Spatial Engine
Description
A Spatial Engine A spatial engine provides access to a service that can perform spatial operations, such as determining what entities fall within a polygon, but it also provides a spatial perspective to the entities that that the system will use. For example providing details about the coordinate reference system that the entity is stored in.
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<geotools<spatial:spatialengine id="arcsde"> <dbtype>arcsde</dbtype> <server>hostname</server> <port>5151</port> <user>username</user> <password>password</password> <pool> <minConnections>2</minConnections> <maxConnections>5</maxConnections> <timeOut>10000</timeOut> <testOnBorrow>true</testOnBorrow> <testOnReturn>false</testOnReturn> <testWhileIdle>false</testWhileIdle> <timeBetweenEvictionRunsMillis>5000</timeBetweenEvictionRunsMillis> <whenExhaustedAction>block</whenExhaustedAction> </pool> </geotoolsspatial:spatialengine> <geotools<spatial:spatialengine id="oracle"> <dbtype>oracle</dbtype> <host>hostname</host> <port>1521</port> <user>username</user> <passwd>password</passwd> <schema>SCHEMA</schema> <instance>instance</instance> </geotoolsspatial:spatialengine> <geotools<spatial:spatialengine id="shapefile"> <dbtype>shapefiledir</dbtype> <url><![CDATA[file:C:/data_dir/data]]></url> <memorymapped>true</memorymapped> </geotoolsspatial:spatialengine> <geotools<spatial:spatialengine id="spatialengine.wfs"> <dbtype>wfs</dbtype> <url><![CDATA[http://hostname/wfs]]></url> <protocol>get</protocol> <username>username</username> <password>password</password> <timeout>5000</timeout> <buffersize>100000</buffersize> <gzip>true</gzip> <lenient>true</lenient> </geotoolsspatial:spatialengine> |