Hi Saka,
I believe that you have found a real issue that should be handled somehow, if
not else then in the documentation.
I am sure that you can demonstrate the issue with simple GET requests against
the demo layers, I suggest to use topp:states. You will need to make 4
requests, GetMaps for W
Thanks Brad for your helpYes. WKT format is POINT(x y). But why for WFS, i have
to reverse the order to POINT(y x)?Following code works right but if i change
it to POINT(x y), i doesn't work (Note: Lat=30, Long=40):
filterString = "DWithin(the_geom, POINT(30 40),1,meters)"; var filter =
encodeU
2D WKT is POINT(x, y). X is usually the longitude.
Brad
--
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/
Hi Devon,
I spent some time trying to figure this one out. I did a brand new install with
the latest build. I used the data directory that comes with geoserver by
default. I installed the grib and image mosaic plugins to the geoserver
WEB-INF/lib. I added my custom projection to the epsg.proper
Thanks Brad and sorry for duplicate message
In following code for WFS, point is defined by WKT . Isn't it? (Note that it is
defined as "POINT(Lat Long)").
filterString = "DWithin(the_geom, POINT(30 40),1,meters)"; var filter =
encodeURIComponent(filterString); vectorSource = new ol.source.Vect
Thanks BradI've already visited that page. If i got it correctly, axis order in
WMS has to be considered only for BBOX? Is there any other paramaters that can
be affected by this change in axis order?
Thanks again
From: Brad Hards
To: 'Saka Royban' ; 'GeoServer Mailing List List'
Sen
> Following code works for both WMS 1.1.1 and 1.3.0, without any change in
> point definition:
> CQL_FILTER: "DWithin(the_geom, POINT(40 30), 1, meters)",
The coordinate order in this filter is defined by WKT (simple features spec),
not by WMS.
See http://docs.geoserver.org/latest/en/user/service
Hi allI'm using GeoServer + OpenLayers. As you know, there is some modification
between different versions in WFS and WMS. Regrading WFS, everything works
correctly, i,e. if Long=40 and Lat=30 then following code works perfectly :
filterString = "DWithin(the_geom, POINT(30 40),1,meters)"; var fi