I have a table (AllGridPoints) with a defined latitude/longitude grid for the US(864,363 rows). I also have another table (ZipCodes) listing zip codes and their latitude/longitude. I need to place these zip codes within the established grid. Any ideas on how to get this done efficiently?
AllGridPoints:
ID
X (Integer)
Y (Integer)
Latitude (Double)
Longitude (Double)
ZipCodes:
ID
ZipCode (Text)
Latitude (Double)
Longitude (Double)
Thanks!
AllGridPoints:
ID
X (Integer)
Y (Integer)
Latitude (Double)
Longitude (Double)
ZipCodes:
ID
ZipCode (Text)
Latitude (Double)
Longitude (Double)
Thanks!