From this Q&A;: Geojson reader-encoding issue
The Source URL: http://stadtplan.bonn.de/geojson?Thema=14403&koordsys;=25832/geojson.json
I think there is a room to improve GeoJSON handling.
- The GeoJSON reader should support various encodings.
- The GeoJSON reader and the GeometryReplacer (Geometry Encoding: GeoJSON) should set an appropriate coordinate system to the geometry if the "geometry" member object contains a valid "crs" member, like this.
{
"type" : "FeatureCollection",
"features" : [
{
"type" : "Feature",
"geometry" : {
"type" : "Point",
"crs" : {
"type" : "name",
"properties" : {
"name" : "EPSG:25832"
}
},
"coordinates" : [ 369127.5691, 5624581.982 ]
},
"properties" : {
...