Tagged Questions

Longitude is a geographic coordinate that specifies the east-west position of a point on the Earth's surface. It is an angular measurement, usually expressed in degrees, minutes and seconds.

learn more… | top users | synonyms

43
votes
12answers
47k 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 kilometres, the points ...
22
votes
6answers
9k 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, MySql, and SQL ...
22
votes
15answers
16k views

How to convert an address to a latitude/longitude?

How would I go about converting an address or city to a latitude/longitude? Are there commercial outfits I can "rent" this service from? This would be used in a commercial desktop application on a ...
21
votes
9answers
17k 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? What's the best ...
19
votes
9answers
21k views

Calculate distance in meters when you know longitude and latitude in java [closed]

Possible Duplicate: Working with latitude/longitude values in Java Duplicate: Working with latitude/longitude values in Java How do I calculate distance between two latitude longitude ...
17
votes
8answers
18k 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 know can be ...
6
votes
3answers
2k views

Getting GPS data from an image's EXIF in C#

I am developing a system that allows for an image to be uploaded to a server using ASP.NET C#. I am processing the image and all is working great. I have managed to find a method that reads the Date ...
6
votes
2answers
6k 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 but I honestly don't ...
6
votes
4answers
2k 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 on the map as best ...
4
votes
5answers
219 views

Zipcodes & Distance

I have a list of zipcoded in a MySQL Database together with their Latitude & Longitude data (Column names: ZipCode, Lat, Lon). Now I have to make a search requests (search for the zipcode) to ...
3
votes
3answers
88 views

Conversion for latitude/longitude to altitude in R

Does anyone know if there is a tool in R to find the height above sea level of a location, given the latitude and longitude ?
3
votes
2answers
259 views

Moving lat/lon text columns into a 'point' type column

I've got a table in my MySQL database called 'house'. Within the house table, there are a couple of text columns called latitude and longitude. I've added a new column called 'coords', of type ...
3
votes
1answer
461 views

How Do I Calculate the Area of a Polygon in a MySQL Database When the Polygon's Points are Lat Longs?

How do I calculate the area of a polygon stored in a MySql database? The polygons' points are lat longs. So, degrees and minutes seem to be causing a problem. I've tried: SELECT AREA( my_polygon ) ...
3
votes
2answers
2k views

Get PHP Timezone Name from Latitude and Longitude?

Is there a way get the timezone of a user by their latitude and longitude? And not just the offset, but the actual timezone they're in. Essentially, I'm searching for the polar opposite of ...
3
votes
2answers
2k 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 on a web service. ...
3
votes
1answer
1k views

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

i have the following two tables:- GeoShapes GeoShapeId INT IDENTITY Name VARCHAR(100) ShapeFile GEOGRAPHY [ this is a closed Polygon of Lat/Longs ] CrimeLocations CrimeLocationId INT IDENTITY ...
2
votes
2answers
157 views

Determine if a latitude/longitude is within a polygon on Earth's surface

I am trying to figure out if a latitude/longitude point is contained within a polygon defined by vertexes that represent points on the earth (also lat/lon's, in clockwise order). This is trivial for ...
2
votes
3answers
327 views

Distance Function for SQLite in iOS 5 is very slow

I have been using for a long time a C function that calculates the distance between coordinates in SQLLite. The thing is that for the very same database and different iOS devices (4 and 5) the time ...
2
votes
1answer
260 views

Python lat/long midpoint calculation gives wrong result when longitude > 90

I have a problem with a short function to calculate the midpoint of a line when given the latitude and longitude of the points at each end. To put it simply, it works correctly when the longitude is ...
2
votes
0answers
440 views

GPS longitude and latitude from geotagged photo

I have geo tagging enabled in my phone camera. It saves latitude and longitude information (I've checked). I'm trying to read it like this import static ...
2
votes
3answers
441 views

How can I get the latitude and longitude of “x” meter from ref latitude and longitude?

I have a distance in meters and ref latitude and longitude. Now I want latitude and longitude from the given ref point on x meters in four direction (south, north, east and west). How can I get this ...
2
votes
2answers
334 views

Distance between two geo-points?

How do I get an accurate distance (in meters) given two geo-points (two latitude/longitude pair) ? Possible Duplicates: Distance Between Two GEO Locations Calculating the distance of ...
2
votes
3answers
761 views

transform longitude latitude into meters

I need a function that maps gps positions to x/y values like this: getXYpos(GeoPoint relativeNullPoint, GeoPoint p){ deltaLatitude=p.latitude-relativeNullPoint.latitude; ...
1
vote
1answer
207 views

Longitude/Latitude to Postcode?

Basically I have an iOS app that I want to find the parliamentary constituency that you are currently in based on geolocation, I can do this if I have the postcode (It has the be the full postcode as ...
1
vote
1answer
187 views

c#: Distance from point to a line segment (in longitude and latitude)

I have a position (A) in longitude and latitude. I have a line segment with start (B) and end (C) points in longitude and latitude. What I am trying to calculate is the shortest distance from A to ...
1
vote
1answer
109 views

Hiding the latitude and longitude in a Google Map

I am working on a Google Map that shows a spot on the map that supposed to stay secret for users. So my question is how to hide the lat and lng in my Google map. Users shouldn't see the lat and lng ...
1
vote
0answers
102 views

Passing the latitude and longitude to server

I couldnt able to pass the values of latitude and longitude from mylocationlistner to register.java in order to send those values to server. how to solve this? Thanks in advance...! Register.java ...
1
vote
1answer
190 views

Accessing latitude and longitude from one class to another

I want to access the values of latitude and longitude of one class in another class. I have a class named Mylocationlistner.java and the code is given below. from this I want to access the current ...
1
vote
1answer
199 views

Eeek! - Calculate Radius having only latitudes and longitudes

I've just spent the past hour trying to find a solution on here but it's all a little foreign to me. I have a MySQL database that looks as such: Postcode int(4), City varchar, State varchar, ...
1
vote
4answers
227 views

store data in Singleton classes

I have an application in java that uses two different threads.And for sharing data between these two threads I wanna use a Singleton class. The data that needs to be shared between threads is ...
1
vote
1answer
376 views

Calculating heading between two latitude and longitude in iPhone [closed]

Possible Duplicate: how to calculate the current speed and average speed of user travelling from current location to particular loaction in map in iphone I have a situation where i should ...
1
vote
2answers
244 views

Longitude / Longitude to quaternion

I've got a longitude and latitude and want to convert this to a quaternion and wondering how I can do this? I want to use this, because I've got an app which projects the earth on a sphere and I want ...
1
vote
2answers
672 views

How to find Latitude and longitude of current location of iphone using j2ee application

I have a J2EE web based application which is especially developed for iPad, iPhone and other mobile devices. I need to find out the device current location longitude and latitude. I done this through ...
1
vote
1answer
164 views

How can I convert a geocell to lat/long?

I use GeoModel on app engine--super awesome, I love it for doing location based searches. However, I'd like to actualy also graph a geocell on to a map. Does anyone know how I can convert a geocell ...
1
vote
1answer
278 views

iPhone developing FOR jailbroken devices (not USING jailbroken devices!)

I would like to dig into developing for jailbroken devices, just to test what the device could do. I would like, for instance, to alter the ipod music based on geo-location, so i have to program a new ...
1
vote
2answers
203 views

How to check if a given longitude value is within any longitude range?

OK. This might be more of a math question but here goes. I have a longitude value, let's say X. And I want to know if X falls between any two longitude values. For example, if my X is 145 and the ...
1
vote
2answers
179 views

Google Earth KML with polygones with longitudes greater than 180deg?

I use polygones in kml files for displaying a rocket's flightpath from ground into orbit in google earth kml files. the problem is, that google earth can't handle longitued greater than 180deg, so ...
1
vote
3answers
2k views

Tiger/Lines or shapefiles of USA states and cities?

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 our client) but can't seem to ...
0
votes
0answers
33 views

Google maps api v2 Longitude and Latitude of address issue

I have so far a working covert script to get Longitude and Latitude from an Address. Problem is that I can't submit, while the submit button is used to get the Longitude and Latitude. So I would ...
0
votes
0answers
13 views

map longitude and latitude

I'm loading gps data and make a image out of it. I want the image to be shown as large as possible, atm it stretches out when you make it very wide for example. How can i do it correct? (it should ...
0
votes
3answers
61 views

Passing strings between activities in android

I have searched quite a few places but i haven't got up with any good solution that worked yet, and i really need help! I am making an application that needs to pass a longitude and latitude string ...
0
votes
1answer
82 views

How to calculate a longitude and latitude at a given distance along a great circle?

I'm wondering if anyone can help me. I'm working on a project for my MSc in which I plan to over lay great circle arcs between aiports on a 3d map using longitudes and latitudes. I can already get the ...
0
votes
0answers
42 views

android mapview how to display latitude longitude grid

would you know if there is a way to turn on the latitude/longitude grid display in mapview? I have been searching all over for it but can't seem to find any thing on it. Thanks!
0
votes
2answers
47 views

excel formula calculation

I have around 200 latitudes and 200 longitudes of different places in my excel sheet which are of the format- Degree, minute and seconds- for eg: 36°34"44' This value is stored in a single cell. I ...
0
votes
1answer
101 views

Create event with latitude and longitude

how i can create a facebook event in graph api setting latitude and longitude? i have tried the Graph API Explorer, using a post method to: https://graph.facebook.com/MY_ID/events and params. All ...
0
votes
2answers
91 views

PHP: Format Latitude and Longitude with degrees, minuets and seconds

How can I convert this: 26.72773551940918 Into something like this: 22°12'42"N The trick here is that the coordinates are, actually Latitude and Longitude, I just need to format them correctly.
0
votes
0answers
9 views

Geolocation issue in safari and iphone.. please help its an urgent

Please help, i am facing problem in geolocation when i do use safari 5.1 or iphone, other browsers work fine with geolocation, please give me proper link or code which could give me latitude or ...
0
votes
2answers
134 views

How to implement Network Triangulation?

I am developing an application in android 2.2 to identify location of user by Network: 1) First: location= (GsmCellLocation)tm.getCellLocation(); cellId= location.getCid(); lac= location.getLac(); ...
0
votes
0answers
20 views

JavaScrpit lib for LL/UTM both side conversion

Does anyone know any library or some web api for UTM/LL conversion? I found pages that allows you to calculate it but i need to use it in my JS script. And I don't want to know how does it work and ...
0
votes
0answers
46 views

Script Bridge and iPhoto - lat/lon info is NSInteger only?

I am trying to access the GPS info in iPhoto images using Script Bridge in Obj-C (XCode 4.1, SDK 10.7). Here is a code snippet: iPhotoApplication *iPhoto = [SBApplication ...

1 2