Hi guys,
I'm struggling with getting coordinate system information in my GEOJSON file. As mentioned in documentation I've tried to add attributes json_crs_type und json_crs_properties attributes to my features, but the GEOJSON writer ignores these attributes and passes my attributes on to "properties" section of every feature.
{
"type" : "Feature",
"geometry" : {
"type" : "Point",
"coordinates" : [ 630533.503899999, 475902.4741000012 ]
},
"properties" : {
"json_crs_type" : "name",
"json_crs_properties" : "LL84"
}
},
Could anylone tell me how to configure my features to get the crs information to my file like in example below?
{
“type”:”Feature”,
“crs”: {
“type”: “name”,
“properties”: { “name”: “urn:ogc:def:crs:OGC:1.3:CRS84” }
},
“geometry”:{
“type”:”Point”,
“coordinates”: [100.0, 0.0]
}
}
Thanks for helping!!