Tagged Questions
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 ...
0
votes
1answer
213 views
Generate a random 100x100 m bounding box in any projection in pure Python?
I'm given:
Extend of WMS Layer
SRS
Now I want to, in standard 2.6 Python (no OGR or C lib dependencies), to generate a 100x100m random bounding box within that extent (assuming it is more than ...
1
vote
0answers
191 views
Valid ranges for bounding box in WMS 1.1.1
I'm connecting to a WMS server and found that the longitudes LatLonBoundingBox specified for some of the values are slightly outside of the +/-180 range (such as 180.05). Are these values considered ...
8
votes
1answer
969 views
How to compute the bounding box of multiple layers in lat/long?
I am writing an application to performance test all kinds of map services, primarily AGS 9.x, AGS 10, and WMS 1.x.
Part of the application involves generating random bounding boxes for individual ...