Tagged Questions

5
votes
6answers
1k views

What’s the best way to store co-ordinates (longitude/latitude, from Google Maps) in SQL Server?

I'm designing a table in SQL Server 2008 that will store a list of users and a Google Maps co-ordinate (longitude & latitude). Will I need two fields, or can it be done with 1 …
1
vote
1answer
458 views

Sql 2008 query problem - which LatLong’s exists in a geography polygon?

Hi folks, i have the following two tables:- GeoShapes GeoShapeId INT IDENTITY Name VARCHAR(100) ShapeFile GEOGRAPHY [ this is a closed Polygon of Lat/Longs ] CrimeLocations …
1
vote
1answer
132 views

Calculate Y position from latitude in degrees on mercator projection

Hi, I'm trying to calculate the Y position on a map with mercator projection given the latitude in degrees. Here's what I need: //mapHeight might be 600 (pixels), for example //l …
0
votes
2answers
140 views

How do I find the lat/long that is x km east/west of a given lat/long?

Hi I have two given lat and lon points. For example, lets assume I have two positions (point_1 and point_2) at coordinates (lat1, lon1) and (lat2, lon2). I would like to calcul …
2
votes
6answers
3k views

Java, convert lat/lon to UTM

Does anyone know of a way, in Java, to convert an earth surface position from lat, lon to UTM (say in WGS84)? I'm currently looking at Geotools but unfortunately the solution is no …
2
votes
6answers
577 views

What datatype to use when storing latitude and longitude data in SQL databases?

When storing latitude or longitude data in an ANSI SQL compliant database, what datatype would be most appropriate? Should float be used, or decimal, or ...? I'm aware that Oracle …
0
votes
7answers
2k views

Calculate distance in meters when you know longitude and latitude in java

Duplicate: Working with latitude/longitude values in Java How do I calculate distance between two latitude longitude points? I need to calculate the distance between two points …
3
votes
3answers
940 views

How can I get latitude, longitude from x, y on a Mercator map (JPEG)?

I have a Mercator projection map as a JPEG and I would like to know how to relate a given x, y coordinate to its latitude and longitude. I've looked at the Gudermannian function b …
4
votes
5answers
2k views

Converting latitude/longitude to Alberta 10 TM Projection

I need to convert latitude/longitude coordinates into Easting/Northing coordinates in the Alberta 10 TM Projection. The 10 TM projection is similar to UTM, but it is a custom proj …
8
votes
10answers
6k views

How do I calculate distance between two latitude longitude points?

Here's an easy one for you: How do I calculate the distance between two points points specified by latitude and longitude? EDIT: For clarification, I'd like the distance in kilom …
2
votes
1answer
186 views

get the time offset from GMT from latitude longitude

Is there a way to estimate the offset from GMT (or time zone) from a latitude/longitude? I've seen geonames, but this would need to work long term and we don't really want to rely …
7
votes
6answers
2k views

Working with latitude/longitude values in Java

Does anyone know of any free utility jars for java that assist with longitude/latitude manipulation in Java? I am wanting to find the distance between two different points. This I …
12
votes
12answers
2k views

How to convert an address to a lat/lon?

How would I go about converting an address or city to a lat/lon? Are there commercial outfits I can "rent" this service from? This would be used in a commercial desktop application …
1
vote
3answers
504 views

Tiger/Lines or shapefiles of USA states and cities?

Hi folks, i've been asked to generate some demographic reports (crime rates, birth/deaths, etc) based on state and cities for the USA. I have all the demographic data (provided by …
3
votes
4answers
1k views

Mapping latitude/longitude to a distorted map

I have a bunch of latitude/longitude pairs that map to known x/y coordinates on a (geographically distorted) map. Then I have one more latitude/longitude pair. I want to plot it …