To filter data using the Common Query Language

learn more… | top users | synonyms

1
vote
1answer
96 views

interiorPoint or Intersects Filter

I have a set of x-coord and y-coord coordinates in separate columns in a PostGIS table. I also have a separate geometry column, named the_geom, of type Point. I've written an Intersects filter to ...
2
votes
0answers
64 views

Geoserver CQL Cross Layer Intersection Failing

I am having trouble forming a properly formatted CQL request using geoServer cross layer filer functions and was hoping others could assist. My request is as follows: ...
1
vote
0answers
29 views

Dynamic SLD styling based on min / max value in a PostGIS column

I have a PostGIS table that contains the GDP of countries together with their polygon boundaries. I am using GeoServer to display this data via OpenLayers. When styling the data, I want to avoid ...
0
votes
0answers
17 views

Geoserver Cross-layer filtering Overlap

Has anybody a WMS Example how to set a OVERLAPS Funktion with two layers? When i use the example for intersect it works great, but by OVERLAPS i get a blank respsonse. Here is my WMS Request: ...
0
votes
0answers
16 views

Using mergeNewParms to modify wms layers

i have two wms layes and geosatelite as a base layer. i have a problem when i try to filter data using cql_filter, the debugger says "Uncaught TypeError: Cannot call method 'mergeNewParams' of ...
0
votes
0answers
23 views

Non-native SRS in CQL query?

In my application, I'm using OpenLayers to composite a Google baselayer with an overlay of my own construction, served up with GeoServer 2.3. The layers in my thing are all in a Wisconsin-specific ...
0
votes
0answers
193 views

WMS CQL Filter in Geoserver not working on adding to the layer

I draw in the init() function a WMS layer an add it to the map: var lyr_osm = {}; var map = {}; $(document).ready(function () { map = new OpenLayers.Map('map', { ...
0
votes
0answers
217 views

WMSGetFeatureInfo results empty when not in CQL_FILTER

I'm trying to get WMSGetFeatureInfo with CQL_FILTER to work correctly. Right now when I click on a result of the CQL_FILTER I get an HTML response with the object attributes. <html> ...
0
votes
0answers
256 views

Using CQL_FILTER BBOX on WMS layer causes ORA exception window SRID does not match layer SRID

I'm trying to limit WMS layer to a specific BBOX. mainLayer.mergeNewParams({ 'CQL_FILTER' : "BBOX(geom, 6541844, 5577147, 6584851, 5620154)" }); Which gives following exception in geoserver's ...