-1

I have a list of surveyor points in longitude and latitude, obtained from Google Maps, and now I want to convert them to X and Y coordinate system ( in meter). My surveyor points cover around 10 km^2, at most. My surveyor points located near or at the equatorial.

I understand that there are a few ways to do this. But I want a quick way. can I then use spherical approximation, given that my points are located near or at the equatorial?

Graviton
  • 81,782
  • 146
  • 424
  • 602
  • I am asking whether can I use spherical approximation, given that my points are located near or at the equatorial? And why is it closed "too broad"? This is terrible – Graviton Jun 19 '17 at 04:41

1 Answers1

1

Yes, for quick and dirty "projection" of small region near equator you can use simple approximation.

If your region has border values Lat0, Lon0, Lat1, Lon1 and you want to get meters:

LatDiff = Lat1 - Lat0
Londiff = Lon1 - Lon0

Scale = 10 000 000 meters / 90 degrees = 111 111 m/degree
// 1/4 part of meridian length

y = (latitude - Lat0) * Scale
x = (longitude - Lon0) * Cos(average_latitude) * Scale

Cosine of latitude (same value for the whole region) compensates error near 1.5% for lat 10 degrees, 6% for lat 20 degrees, and might be omitted if needed.

MBo
  • 77,366
  • 5
  • 53
  • 86