Hello,
I have a feature layer in ArcGIS Online that I published as a WFS. The CRS of the layer is EPSG:28992. Using the srsName parameter in the URL I can switch to the EPSG:4326 projection. Now I'm trying to use a bounding box to filter my features but the latitude and longitude is switched.
Whenever I'm trying to filter using a bounding box with the EPSG:28992 format it works fine but when switching to the EPSG:4326 format I need to switch.
EPSG:28992:
<Verlichting:Shape>
<gml:Point gml:id="Verlichting.2150.pn.0" srsName="urn:ogc:def:crs:EPSG::28992">
<gml:pos>172438.52500000 578535.59900000</gml:pos>
</gml:Point>
</Verlichting:Shape>
EPSG:4326:
<Verlichting:Shape>
<gml:Point gml:id="Verlichting.2149.pn.0" srsName="urn:ogc:def:crs:EPSG::4326">
<gml:pos>53.19296070 5.64785603</gml:pos>
</gml:Point>
53.1 and 5.64 need to be the other way around, right? How can I make that happen?