I have JSON files that I am reading and using GeometryFilter to create points. GeometryFilter is looking for the coordinates as long, lat. Some of the points in the JSON input are incorecly entered as lat,long. Is there are way to read the JSON coordinates and switch the coordinates to long, lat if they are incorrectly set to lat,long? For example:
CHANGE FROM
"geometry":{
        "type":"Point",
        "coordinates":o 29.32991754843333 , -82.16997782090549]
TO
"geometry":{
        "type":"Point",
        "coordinates": -82.16997782090549, 29.32991754843333 ]
Thanks,
David