GeoJSON being returned from GeoServer 2.13 is no longer returning coordinates in Lat/Lon as specified by the requests. Recently upgraded from 2.4.3 and the existing code that parses the coordinates needed to be swapped. GML Properly formats to lat/lon for GML2, 3 and 3.2, but JSON will not return lat/lon. Reference frame from the DB and to the request is WGS84(EPSG:4326) Geoserver 2.4.3 response geometry, all coordinates are lat/lon: "geometry": {"type":"MultiPolygon","coordinates":[[[[34.87397684700005,-82.47106732599997],[34.87397429600003,-82.47109431399997],[34.87396811200006,-82.47112042999998],[34.87395847200003,-82.47114494899995],[34.87394562800006,-82.47116720499997],[34.874177141000075,-82.47140070199998],[34.87424935700005,-82.47128610399994],[34.874377587000026,-82.47108261699998],[34.87397684700005,-82.47106732599997]]]]} Geoserver 2.13 response geometry, the same coordinates, but lon/lat "geometry": {"type":"MultiPolygon","coordinates":[[[[-82.47106733,34.87397685],[-82.47109431,34.8739743],[-82.47112043,34.87396811],[-82.47114495,34.87395847],[-82.4711672,34.87394563],[-82.4714007,34.87417714],[-82.4712861,34.87424936],[-82.47108262,34.87437759],[-82.47106733,34.87397685]]]]} I understand that GeoJSON normally returns the pairs Lon/Lat in most cases, however it should still be allowed to return in Lat/Lon if needed by the user. any further information, feel free to reach out. rvanma...@prostarcorp.com. I apologize if this is how the response will be from now on, or if there is an extension or configuration i missed please let me know. I scoured geoserver docs to find anything i could but everything is telling me WFS 2.0 should still return lat/lon. Thanks |