I have a geoJSON file which is in the format
{
"type": "Feature",
"id":"01",
"properties": {
"name": "AREA"
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[103.83994102478027, 1.5533451402176797], [103.84079933166502, 1.5600374631000955], [103.84440422058104, 1.5627830253088353], [103.85178565979004, 1.5632978178235577], [103.85693550109862, 1.5566055053011625], [103.8552188873291, 1.548368783815046], [103.84852409362793, 1.546995993784303], [103.84320259094238, 1.5480255863906685], [103.8413143157959, 1.550427967193869],[103.83994102478027, 1.5533451402176797]
]
]
]
}
},
{
"type": "Feature",
"id":"02"
.... .... .... and so on.
But when I validate this it shows me the geoJSON is not following the right hand rule.But when I plot it in the map it works fine.But I wanted mine to be a valid geoJSON So How can I change this to
{
"type": "Feature",
"id":"01",
"properties": {
"name": "AREA"
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[103.83994102478027, 1.5533451402176797],[103.8413143157959, 1.550427967193869],[103.84320259094238, 1.5480255863906685] ,[103.84320259094238, 1.5480255863906685],[103.84852409362793, 1.546995993784303], [103.8552188873291, 1.548368783815046],[103.85693550109862, 1.5566055053011625],[103.85178565979004, 1.5632978178235577], [103.84440422058104, 1.5627830253088353],[103.84079933166502, 1.5600374631000955],[103.83994102478027, 1.5533451402176797]
]
]
]
}
},
{
"type": "Feature",
"id":"02"
....
....
.... and so on.
Any help is appreciated.