tags:

views:

463

answers:

6

I'm working on a GeoTargeting application. I'm curious if longitude and latitude of a point on the earth can change?

If you know the exact position of the statue of liberty how sure is it that longitude and latitude will stay the same.

Does it change according to the season, time in the year, or slowly over time

+4  A: 

Yes. Zip codes get split all the time, and doing so would move the center of the zip code to a new location.

Aric TenEyck
What s longitude or latitude got to do with zip code ? Definition of longitude: the angular distance between a point on any meridian and the prime meridian at Greenwich. How this will change? I understand zip code changes but how this affects it s location relative to Greenwich?
I m talking about longitude and latitude . not zip codes .
"What s longitude or latitude got to do with zip code": Nothing. The question was about the lng/lat of a particular postal code, whether it can change or not.
Mike Gleason jr Couturier
read the question.
Thanks Mike. nobody is reading the question.
But I think the question has been edited.. it does not mention postal codes anymore..
Mike Gleason jr Couturier
Yes, the original question asked if the longitude / latitude of a postal code (In American English, a Zip Code) could ever change.
Aric TenEyck
+1  A: 

Here's an example of just such a change: nytimes

Tegeril
Submitter has changed the original question to render this answer irrelevant.
Tegeril
+3  A: 

47.554 always equals 47.554

But if the shape of the earth changes or you are using different methods of calculations (there are plenty) or if the input data changes in precision or if if your compiler treats floating point differently..

you'll end up in different long/lat

Mike Gleason jr Couturier
+18  A: 

Wikipedia to the rescue:

The surface layer of the Earth, the lithosphere, is broken up into several tectonic plates. Each plate moves in a different direction, at speeds of about 50 to 100 mm per year. As a result, for example, the longitudinal difference between a point on the equator in Uganda (on the African Plate) and a point on the equator in Ecuador (on the South American Plate) is increasing by about 0.0014 arcseconds per year.

Carra
+8  A: 

It depends on the map projection variables you use. Currently WGS-84 is used mostly.

The same point can have different coordinates depending on the variables. They do not differ a lot, I remember the difference between EUR-50 (or something like that) and WGS-84 was at most 50 meters or something.

GvS
+3  A: 

You're tangentially referring to geodetics, which is the science of modelling (representing) the shape of the earth. So while a physical location may not change, the datum (model) used by a geodetic coordinate system will change, fortunately this does not happen frequently.

In North America NAD83 is the mostly widely used datum, which replaced NAD27.

Did I mention that Geographic Information Systems (GIS) was my foray into software development?

Matthew Sposato