Tagged Questions

A location on a spheroid can be specified using its latitude - the angular distance of that location south or north of the equator, and its longitude - the angle east or west from a reference meridian.

learn more… | top users | synonyms

54
votes
12answers
28k views

What is the ideal data type for latitude / longitude?

I'll be performing calculations on lat / long pairs, what datatype is best suited in MySQL database?
13
votes
4answers
7k views

Longitude and latitude value from IP address

Is it possible to get the longitude and latitude value from IP address in asp.net? If it is possible, please let me know how can I get this.
12
votes
5answers
5k views

proper/best type for storing latitude and longitude

In a system level programming language like C, C++ or D, what is the best type/encoding for storing latitude and longitude? The options I see are: IEEE-754 FP as degrees or radians degrees or ...
10
votes
2answers
202 views

Is there an algorithm for determining how much daylight there is?

Is there a function/algorithm that allows me to input the latitude and the approximate orbital position of the earth in so that I can determine how long the sun is up? IE during the winter it would ...
9
votes
3answers
2k views

Converting longitude/latitude to X/Y coordinate

I created a map using Google Maps API that highlights all Minnesota counties. Basically, I created the county polygons using a set of longitudes/latitudes coordinates. Here's a screenshot of the ...
9
votes
1answer
244 views

Get results from mysql based on latitude longidude

I have a mysql Database and 2 tables let's say clients and schools. Now each table has columns latitude and longitude. And I need do make a SELECT for example from second table where schools are in a ...
8
votes
5answers
157 views

Comparing Latitude and Longitude

In my iPad application i am drawing one rectangle on map using overlay. I have lat/long of one edge as well as length and width of rectangle. I have some other lat/longs coming from database. Now how ...
8
votes
5answers
2k views

Algorithm to find all Latitude Longitude locations within a certain distance from a given Lat Lng location

Given a database of places with Latitude + Longitude locations, such as 40.8120390, -73.4889650, how would I find all locations within a given distance of a specific location? It doesn't seem very ...
7
votes
9answers
2k views

How can I do efficient range searching + counting with latitude/longitude data?

I'm working with a large set of points represented by latitude/longitude pairs (the points are not necessarily unique, there could be several points in the set that are at the same location). The ...
6
votes
1answer
126 views

R maps package - how to draw lines between countries?

In R, using maps package, and gcIntermediate function, how do I draw lines between two countries? It needs lat-long, but I'm not sure what lat-long should I give for countries (say I want to draw a ...
6
votes
6answers
287 views

Efficient way to get index of minimum value in long vector, python

I have a long list of longitude values (len(Lon) = 420481), and another one of latitude values. I want to find the corresponding latitude to the minimum of the longitude. I tried: SE_Lat = [Lat[x] ...
6
votes
3answers
299 views

Queries to find places within a given lat/lng

So I'm trying to display lists of places within a range of the given lat/lng. I have no problem with this: Places within one mile (list of places...) Using something like SELECT * FROM places WHERE ...
6
votes
7answers
5k 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 projection for the ...
5
votes
2answers
703 views

Geographic Midpoint between two coordinates

I have been using the Moveable-Type website to aid me in some Geocoordinate calcuations and it's been very useful, however, I have a bug in my calculation of the mid-point between two coordinates. My ...
5
votes
4answers
2k views

How do I plot latitude/longitude coordinates on the screen?

I am trying to figure out how to plot WGS84 latitude/longitude points on a bitmap but cannot figure out the math required to turn lat/lon points into coordinates that would be plottable. Could anyone ...
5
votes
1answer
334 views

Order table by proximity to specific latitude/longitude (using MySQL+PHP)

MySQL (table) id | url | lat | lng ---------------------------------- 1 | x | 44.339565 | -101.337891 ---------------------------------- 2 | y | 44.150681 | -101.074219 ...
5
votes
3answers
684 views

Determine distance from coastline in Matlab

In MATLAB, I have an array of latitude and longitude pairs that represents locations in the United States. I need to determine the distance to the nearest coastline. I think MATLAB has a built in ...
5
votes
4answers
4k views

How do I calculate the distance between two points of latitude and longitude?

i have latitude and longitude of particular place and i want to calculate the distance so how can i calculate it?
4
votes
2answers
79 views

Algorithm to find clusters (min x pts. within y distance of cluster center) of geographical points

Given a database of geographical locations (long/lat), what would be the best approach to determining/detecting clusters of locations that are within x miles of the cluster center AND total at least y ...
4
votes
5answers
200 views

Java double vs BigDecimal for latitude/longtitude

When storing latitudes/longtitudes which are typically of the format: 44.087585 (i.e. max 2 numbers before the dot and 6dp) do I need to bother with bigdecimals?
4
votes
2answers
74 views

Calculating a Future Position

I've got this information about an entity: Lat/Long Position Heading (In Radians) Speed (In knots) How do I calculate where the entities lat/long position will be at an arbitrary point in time (or ...
4
votes
1answer
447 views

How to use MySQL geospatial extensions with spherical geometries

I would like to store thousands of latitude/longitude points in a MySQL db. I was successful at setting up the tables and adding the data using the geospatial extensions where the column 'coord' is a ...
4
votes
3answers
738 views

Given coordinates, how do I get all the Zip Codes within a 10 mile radius?

I have a location (latitude & longitude). How can I get a list of zipcodes that are either partially or fully within the 10 mile radius of my location? The solution could be a call to a well ...
4
votes
1answer
550 views

Point of latitude and longitude inside a complex spherical polygon

Question What R package has a function that can determine if a coordinate is within a closed, complex spherical polygon (i.e., a point inside a polygon on Earth's surface)? Related Links JPL: ...
4
votes
3answers
3k views

Calculate second point knowing the starting point and distance

using a Latitude and Longitude value (Point A), I am trying to calculate another Point B, X meters away bearing 0 radians from point A. Then display the point B Latitude and Longitude values. Example ...
4
votes
3answers
1k views

How to import latitude/longitude data correctly into MySQL?

I've got a dataset of city names with their corresponding latitudes/longitudes that I've loaded into a MySQL table, like so: city_id | city_name | latitude DECIMAL(9,6) | longitude DECIMAL(9,6) ...
4
votes
11answers
10k views

Receive a WOEID by Lat, Long with Yahoos API

i searched a while but found nothing, thats simular to my problem. i'm trying to use the YAHOO Weather API, for example: http://weather.yahooapis.com/forecastrss?w=4097 i don't know the WOEID in my ...
4
votes
4answers
2k views

How do you click on a map and have latitude and longitude fields in a form populated?

I have a form that a user needs to fill out where the location needs to be identified. I have latitude and longitude input fields on the form. I am also looking for the decimal lat and long. What I ...
4
votes
4answers
2k views

Great Circle Distance question

I am familiar with the formula to calculate the Great Circle Distance between two points. i.e. <?php $theta = $lon1 - $lon2; $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + ...
4
votes
6answers
22k views

How do I convert coordinates to a Latitude & Longitude?

I am reverse engineering a transportation visualization app. I need to find out the latitude for the origin of their data feed. Specifically what XY 0,0 is. The only formulas I have found calculate ...
4
votes
4answers
659 views

How best to perform corridor range search over a set of latitude / longitude coordinates

What would be the best approach to finding the set of coordinates, from say about 5,00, which lie within a path of points, given a specified width. eg an aircraft following several waypoints. Is ...
3
votes
3answers
215 views

is there a java api for getting the latitude and longitude from zip codes?

I am building an applet that requires an input of a location. however, because of the specific API that I'm using, that input must be Latitude and Longitude. the problem with this is that it would be ...
3
votes
1answer
349 views

Get lat/long given current point, distance and bearing

I've seen this asked a few times and I feel like a dunce for having to ask it again, but: Given an existing point in lat/long, distance in (in KM) and bearing (in degrees converted to radians), I ...
3
votes
2answers
81 views

How longitudinal width will impact Bearing

EDIT: For the most part I have figured this out using a formula that describes the changes in longitudinal width depending on your latitude. Link to wikipedia article. Now I haveto figure out how the ...
3
votes
2answers
197 views

List of major cities with latitude longitude and timezone

I am looking for an open source flat file (comma separated values for example) of the major cities in this world, together with their latitude longitudes and timezone. The first 1000 or more is fine. ...
3
votes
2answers
232 views

C# Find Midpoint of two Latitude / Longitudes

I need to find the midpoint between two Latitude/Longitude points. I am trying to center a map between two locations I have plotted and need to find that point. I have written this function from ...
3
votes
2answers
868 views

Optimal column type for latitude and longitude on Rails and MySQL

I'm wondering what's the best column type to store latitude/longitude on MySQL + Rails. Precision must be enough to store every bit of lat/lng degrees obtained from mobile devices and/or geocoders. ...
3
votes
2answers
825 views

How does this Google Maps zoom level calculation work?

I know what the input and outputs are, but I'm just not sure how or why it works. This code is being used to, given a min and max longitude/latitude (a square) that contains a set of points, ...
3
votes
2answers
240 views

How to INDEX this MySQL table for use with GEO data?

My table currently stands like this: CREATE TABLE IF NOT EXISTS `x_geodata` ( `post_id` int(11) NOT NULL, `post_type` varchar(20) NOT NULL, `lat` float(10,6) NOT NULL, `lng` float(10,6) NOT ...
3
votes
1answer
121 views

Using longtitude/latitude to calculate OSGR

Our database currently stores 2 values - the longtitude and the latitude. E.g.: Longitude: -0.310150 N Latitude: 52.688930 W What we would like to do now is convert these values into the Ordanance ...
3
votes
7answers
1k views

3D coordinates on a sphere to Latitude and Longitude

I've got the following information: There exists a sphere with origin (0,0,0) and radius R. After doing a ray-sphere intersection I know a point (XYZ) in 3D space that is on the sphere (the exact ...
3
votes
4answers
1k views

Latitude, Longitude Grabber

What I would like to do is create app where when anyone clicks on the map object and two fields get filled with latitude and longitude at every click. Is there sample code of Google Maps V3 JavaScript ...
3
votes
2answers
434 views

Distance between two lat,lon points

is it ok to compare distances in a classic way (distance between 2 points: d = sqrt(pow(lat2-lat1, 2) + pow(lon2-lon1, 2)) ) using the latitude and longitude returned from google apis without any ...
3
votes
3answers
549 views

convert latitude and longitude to northing and easting in java?

how to convert latitude and longitude to northing and easting in Java?
3
votes
1answer
2k views

Using Matlab Google-Earth Toolbox to plot Latitude and Longitude

I am trying to plot some waypoints using the Google-Earth toolbox. The documentation for it is pretty poor, so I figured this would be a good Stack Overflow question. I have a matrix, wypts that has ...
3
votes
2answers
123 views

How to determine which images of the earth's surface overlap with an arbitrary given image?

Suppose you are given an image of the earth's surface and that it is stored in the database as a polygon defined by the latitude/longitude pairs of its corners. Now suppose there are millions of ...
3
votes
3answers
732 views

Calculating distance between two points, using latitude longitude, what am I doing wrong?

I'm trying to solve this assignment and it's taking too much time: Here's my try, it's just a snippet of my code: final double RADIUS = 6371.01; double temp = Math.cos(Math.toRadians(latA)) ...
3
votes
2answers
432 views

City/Country text field validation

I need to keep track of the users lat/lng/city/country for my application with the following two requirements: 1) Get the users lat/lng/city/country automatically. (This is easy, I can use the ip or ...
3
votes
3answers
159 views

How to implement geo-based data store and computation?

Well, let me explain this briefly: 1.I want to build a website that provides location based services, like http://fireeagle.yahoo.net/ . 2.I guess most of these services have something do with ...
3
votes
2answers
529 views

Looking for free web services APIs based on geolocation (latitude and longitude)?

I am developing a web project, which uses a database with many places worldwide and their geolocations (latitude and longitude). I am looking for any free web services and APIs, working with ...

1 2 3 4 5 8