1

I've downloaded the data from NYC Parking regulation. I want to plot that on Google Maps. I use http://www.shpescape.com/ft/ to convert to Google Fusion Maps but the data is in X,Y coordinates instead of Lat, Long. How do I convert X,Y coordinates to Lat, Long? I'm using OSX.

Here's the sample data.

1005740.867110
243957.356623
toy
  • 133
  • 2
  • 5

1 Answers1

1

Your data is in LAT/LON (WGS84) but the X and Y columns are in a projected coordinate system, likely something like UTM or State Plane.

So all you have to do is create 2 new columns for the Lat and Lon, and populate them like this:

How do I calculate the latitude and longitude of points using QGIS?

DPSSpatial_BoycottingGISSE
  • 18,790
  • 4
  • 66
  • 110