Tagged Questions
The coordinates tag has no wiki summary.
17
votes
11answers
1k views
Matrix transforms; concepts and theory, are there any free resources for learning practically?
I've been having fun rendering charts and graphs from co-ordinates lately, and I'm fascinated by using matrices to transform co-ordinate spaces.
I've been able to successfully scale and invert 2 ...
15
votes
3answers
3k views
Sort latitude and longitude coordinates into clockwise ordered quadrilateral
Problem
Users can provide up to four latitude and longitude coordinates, in any order. They do so with Google Maps. Using Google's Polygon API (v3), the coordinates they select should highlight the ...
15
votes
7answers
12k views
Convert long/lat to pixel x/y on a given picure
I have a city "map" (for example - Moscow). She in accuracy repeats the contours the given city in google maps (that is it is copied from google maps and it is a little processed, but the sense ...
12
votes
9answers
9k views
latitude/longitude find nearest latitude/longitude - complex sql or complex calculation!
this is little hard one. i have latitude and longitude and i want to pull the record from the database, which has nearest latitude and longitude by the distance, if that distance gets longer then ...
10
votes
4answers
4k views
How can i calculate the distance between two gps points in Java?
I used this code but it doesnt work:
Need the distance between two gps coordinates like 41.1212, 11.2323 in kilometers (Java)
double d2r = (180 / Math.PI);
double distance = 0;
try{
double ...
10
votes
4answers
2k views
Generating triangular/hexagonal coordinates (xyz)
I'm trying to come up with an iterative function that generates xyz coordinates for a hexagonal grid. Maths has never been easy for me (I'm just not very clever!) and this problem has me stumped. With ...
9
votes
2answers
253 views
I need to know the predefined point is in the sea or on the land
I have a system where users put some coordinates (latitude/longitude), I need to check if specified coordinates are in the sea or not. Is there any service that could give me the answer. Or is it ...
9
votes
4answers
8k views
How to get the absolute coordinates of a view
I'm trying to get the absolute screen pixel coordinates of the top left corner of a view. However, all methods I can find such as getLeft() and getRight() don't work as they all seem to be relative to ...
9
votes
4answers
9k views
How do i open Google Maps for directions using coordinates on the iphone
I am using UIMapView to display locations on the iPhone. I want to do a directions from current location to the location of interest, I don't think its possible using MapKit (but if it is please ...
9
votes
4answers
6k views
Convert Lat/Longs to X/Y Co-ordinates
I have the Lat/Long value of New York City, NY; 40.7560540,-73.9869510 and a flat image of the earth, 1000px × 446px.
I would like to be able to convert, using Javascript, the Lat/Long to an X,Y ...
9
votes
9answers
4k views
Covering Earth with Hexagonal Map Tiles
Many strategy games use hexagonal tiles. One of the main advantages is that the distance between the center of any tile and all its neighboring tiles is the same.
I was wondering if anyone has any ...
8
votes
3answers
221 views
Extracting motion data from a list of coordinates
I have a series of CSV files of timestamped coordinates (X, Y, and Z in mm). What would be the simplest way to extract motion data from them?
Measurables
The information I'd like to extract includes ...
8
votes
3answers
850 views
Algorithm for 2D Interpolation
I have two shapes which are cross sections of a channel. I want to calculate the cross section of an intermediate point between the two defined points.
What's the simplest (relatively simple?) ...
8
votes
4answers
2k views
Calculate distance between two x/y coordinates?
I would like to calculate the distance between two x/y coordinates on the surface of a torus. So, this is a normal grid that has the property that its corners and sides are 'connected'. For example, ...
7
votes
4answers
193 views
Calculate the distance between two integer Lists
I am using C# and I have two list<AACoordinate> where each element in these lists represents a 3D point in space by x,y and z.
class AACoordinate
{
public int ResiNumber { get; ...
7
votes
2answers
2k views
Calculating bearing between two CLLocationCoordinate2Ds
Very "simple" problem: given two CLLocationCoordinate2Ds, how can I get the bearing (as radians) from the first to the second? I've done a lot of research and studying on this, both the general ...
7
votes
4answers
2k views
How to map a point onto a warped grid
Say you have a collection of points with coordinates on a Cartesian coordinate system.
You want to plot another point, and you know its coordinates in the same Cartesian coordinate system.
...
6
votes
4answers
182 views
How to perform bilinear interpolation in Python
I would like to perform blinear interpolation using python.
Example gps point for which I want to interpolate height is:
B = 54.4786674627
L = 17.0470721369
using four adjacent points with known ...
6
votes
1answer
213 views
Coordinates all wrong on iPhone 3G? It could be your compiler
Note: This is question to which I have already found an answer. It seems that posting a question after finding an interesting answer is encouraged, so I am posting this. Someone else is likely to have ...
6
votes
3answers
210 views
Transform a coordinate sytem into a Matrix in Mathematica
Ahead of a the programming question, I believe I need to give a little background of what I am doing to ease the understanding of my problem :
I record eye-movements while displaying some patterns to ...
6
votes
2answers
320 views
How do I check if cartesian coordinates make up a rectangle efficiently?
The situation is as follows:
There are N arrays.
In each array (0..N-1) there are (x,y) tuples (cartesian coordinates) stored
The length of each array can be different
I want to extract the subset ...
6
votes
3answers
173 views
Elegant way to position two rectangles
I have a rectangle (called the target) and want to place another rectangle (called the satellite) alongside. The satellite has a position (top, bottom, left, right) that determines the placement edge ...
6
votes
5answers
702 views
Missing Coordinates. Basic Trigonometry Help
please refer to my quick diagram attached below.
what i'm trying to do is get the coordinates of the yellow dots by using the angle from the red dots' known coordinates. assuming each yellow dot is ...
6
votes
4answers
17k views
google maps, cellid to location
According to this sample:
http://www.codeproject.com/KB/mobile/DeepCast.aspx
It's possible to request a gps coordinate (longitude & latitude) including range when sending cellid information ...
6
votes
11answers
4k views
Finding Cities within 'X' Kilometers (or Miles)
This may or may not be clear, leave me a comment if I am off base, or you need more information. Perhaps there is a solution out there already for what I want in PHP.
I am looking for a function ...
5
votes
3answers
111 views
Algorithm to find point of minimum total distance from locations
I'm building an application based around finding a "convenient meeting point" given a set of locations.
Currently I'm defining "convenient" as "minimising the total travel distance". This is a ...
5
votes
1answer
122 views
Good features of paths for machine learning
I'm looking into ML problems (mostly density estimation and anomaly detection) with paths made up of coordinates (GPS). Other than the coordinates themselves and deltas (changes between adjacent ...
5
votes
4answers
112 views
How to move within Cartesian space along cardinal directions while limiting turns?
Given is a Cartesian coordiante system, a from-position A (X/Y), and a to-position B (X/Y). I want to move from A to B. However, I can only move on the eight directions N, NE, E, SE, S, SW, W, NW.
I ...
5
votes
1answer
118 views
ActionScript - Inaccurate Mouse Coordinates?
when tracing the mouseX / mouseY or localX / localY coordinates of a display object, why does x start at 1 while y starts at 0?
for example, i've drawn a simple 400 x 400 pixel sprite onto the stage ...
5
votes
2answers
360 views
Calculate if an object is inside a set of coordinates?
I have a set of X and Y points that builds a shape and I need to know if an object is inside it or not what is the calculation to it ?
X and Y coords example:
522.56055 2389.885
544.96 2386.3406
...
5
votes
3answers
437 views
Implementation of parallel coordinates?
I want to implement parallel coordinates for my muldimensional result. Does anyone have a good link to its implementation in matlab or R? Furthermore, are there any suggestions regarding the best tool ...
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
1answer
119 views
Coordinates in landscape mode in Windows Phone
Here is my application in the landscape mode (and the two borders inside the grid called 'LayoutRoot').
1) I am trying to receive border1's coordinates in this way:
GeneralTransform ...
4
votes
1answer
166 views
Converting Device Coordinates to world Coordinates
I'm doing this project a part of which requires me to get the values of the acceleration of the phone(android) in each axis. So, for example, no matter how the phone is placed the value of the ...
4
votes
2answers
366 views
Get new position of coordinate after rotation with Matrix
I'm wondering how to use a Matrix to get the new position of a coordinate within a rectangle after rotation. What I would like to do is:
Define a rectangle
Define a coordinate within that rectangle
...
4
votes
1answer
213 views
Javascript Text Selection Page Coordinates
I have an question about getting the page coordinates of a text selection in javascript. I do know how to get the selected text etc. but that is not what I'm looking for... I need the coordinates (in ...
4
votes
2answers
1k views
Handling OnClick event for canvas in javascript and getting its coordinates
I have a canvas for drawing like that
<div id="canvas" style="position:relative;width:600px;height:300px;" onclick="q()"></div>
I need to handle the event when clicking on it and get ...
4
votes
3answers
330 views
Coordinates of HTML elements
I am going to create a selection 'lasso' that the user can use to select portions of a table. I figured that positioning a div over the region is far easier than trying to manipulate the cell borders.
...
4
votes
3answers
555 views
How to convert my binary (hex) data to latitude and longitude?
I have some binary data stream which passes geo location coordinates - latitude and longitude. I need to find the method they are encoded.
4adac812 = 74°26.2851' = 74.438085
2b6059f9 = 43°0.2763' = ...
4
votes
3answers
395 views
algorithm to determine a rectangle from coordinates
I have user input that consists of a drawn rectangle (freestyle). Now this drawn figure isn't perfect, so I would like to redraw the shape for them based on an algorithm.
I have a bunch of ...
4
votes
3answers
1k views
Convert Lat/Lon to MGRS
Does anyone know where I could find a library of code for converting Lat/Lon position to Military Grid Reference System (MGRS)? I'm looking for a C# implementation if possible.
4
votes
5answers
5k views
Calculating the angle between two lines without having to calculate the slope? (Java)
I have two Lines: L1 and L2. I want to calculate the angle between the two lines. L1 has points: {(x1, y1), (x2, y2)} and L2 has points: {(x3, y3), (x4, y4)}. How can I calculate the angle formed ...
4
votes
5answers
2k views
PHP MySQL get locations in radius user's location from GPS
I have in my database car incidents for example. These incidents have a latitude and longitude. On a mobile using the GPS, I get the user's location with his coordinates. The user can select a radius ...
4
votes
1answer
2k views
How can I calculate a trend line in PHP?
So I've read the two related questions for calculating a trend line for a graph, but I'm still lost.
I have an array of xy coordinates, and I want to come up with another array of xy coordinates ...
4
votes
4answers
791 views
How to get cardinal mouse direction from mouse coordinates
is it possible to get the mouse direction (Left, Right, Up, Down) based on mouse last position and current position? I have written the code to calculate the angle between two vectors but I am not ...
4
votes
2answers
4k views
Converting long/lat to pixel x/y, given a zoom-level
I'm trying to develop a page in ASP.NET that will act as a tile-server for a Google Map
It will pull a collection of latitude/longitude points from the database, then render them as small red dots on ...
4
votes
1answer
2k views
Specifying a non-fullscreen OpenGL ES view
Anyone know how to create an OpenGL ES app that doesn't use the full iPhone screen dimensions as its drawing surface?
Everything I've seen so far has the EAGLView (or whatever) drawing to 0, 0, 320, ...
4
votes
3answers
1k views
Is there a simple “point in rect” algorithm for a wraparound map?
I'm trying to build a rectangular grid that can wrap around at the edges. Anyone who plays video games will probably be familiar with the concept: go far enough in one direction on the world map and ...
4
votes
3answers
10k views
Convert string to CLLocationCoordinate2D
I have an array with NSString's in it. Some of these are latitude and longitudes and I need to use this with the below code.
The latText and lonText are my strings that I am trying to use as ...
3
votes
1answer
44 views
Given an object's coordinates, how do I determine on which quadrant of a rotated coordinate system is it?
I'm making a simple simulation program and I've run into some problems... Inhabitants of the simulated world have 4 eyes: left, up, right and down. Only one eye can be active at the time, and that eye ...