Refers to a group of numbers used to indicate the position of an object relative to an axis. Commonly, refers to a latitude/longitude pair that indicates a geographical position.
0
votes
1answer
22 views
Latitude and longitude
Actually I have the decimal values of latitude and longitude.
In a 2d referential, are those values the x an y coordenates?
example :
in a position P
latitude = 41.15 longitude = ...
-1
votes
2answers
53 views
How do you get a random decimal number (positive and negative) in PHP
I wish to randomly position markers on a Google map so hoped to randomly generate the longitude and latitude of the markers using PHP and load them in via AJAX. The problem I have is not only are ...
-1
votes
0answers
17 views
¿Why do I get different coordinates on a resized canvas?
Well, I have a problem with canvas.
I use jquery to resize the canvas element and its contents don't lose their original coordinates. When the canvas is running and context is painting I use a jquery ...
0
votes
2answers
16 views
Android: Compensate for screen offset due to menus/toolbars?
MotionEvent.getRawX/.getRawY return absolute coordinates (i.e. based on the entire screen). But the View receiving that MotionEvent may be (probably is) a child of yet another View, which itself may ...
0
votes
0answers
25 views
Android how is View position controlled?
According to the docs for the View class:
The geometry of a view is that of a rectangle. A view has a location, expressed as a pair of left and top coordinates, and two dimensions, expressed as a ...
0
votes
1answer
21 views
Android onTouch called even when touch leaves View
Sanity check needed.
If an ACTION_DOWN occurs within a View, that View's onTouch continues to get ACTION_MOVE events even when the point of contact leaves the View (!!!).
Likewise, if the ...
1
vote
0answers
29 views
Android getX/getY interleaves relative/absolute coordinates
There are a lot of discussions of how MotionEvent.getX/.getY are "unreliable" (or other terms) and that we should use the Raw versions of these calls to get coordinates.
On my Nexus 7, I have ...
0
votes
1answer
24 views
Google maps get coordinates on route
everybody !
Who can help me?
I would like to make something like an navigator in android using google maps, and i need to know coordinates on my route on every xx kilometers (from start point to end ...
0
votes
0answers
14 views
Issue with panTo() and how to change coordinates
I've got a little issue while placing a panTo() into google maps V3. Here is the description of the problem:
In this case, everything goes well, the map moves and animates until it stops at the ...
1
vote
1answer
27 views
Discrepancy between sorting of coordinate points across major browsers using jquery
In a web application I'm developing I am detecting the boundary of certain images and generating an array of coordinate points along the detected boundaries. Because of how the array is generated the ...
1
vote
1answer
37 views
get the position / coordinates and size of text displayed on the screen in TKINTER
We are about to conduct an eye tracking study where we will try to evaluate gaze on specific words displayed on the screen.
I have many .txt files that need to be converted to images and displayed on ...
0
votes
0answers
12 views
Intensity map for single points in Google Fusion tables
I am trying to create an intensity map for single points in Google Fusion tables (ie. instead of buckets for the markers, would like a continuum). The only solution I have found is to define polygons ...
0
votes
1answer
38 views
How do i extract x, y coordinates from a PDF document?
I have been trying to extract (x,y) coordinates from a PDF document using PHP. So far, no luck. Is it possible to use GhostScript? If so, how do I accomplish that? The solution doesn't necessarily ...
0
votes
1answer
32 views
Translate point coordinates to image
How to translate Cartesian point coordinates to BufferedImage pixels from the top left corner?
The question is in the context of plotting 2D math functions.
Let the image of height h and width w be ...
0
votes
1answer
55 views
How to check if dictionary contains a value in a generic list
I have a list of coordinates that are stored in a generic list. I want to be able to iterate through the list and check if any coordinates are adjacent to each other. If they are, then I know its ...
0
votes
1answer
17 views
Efficient getting a pair of coordinates with the shortest distance from array of coordinates using Javascript
I have a several x-y coordinates stored in an two arrays, one for source object, one for target :
var sourcePoints = [
{
x: 20,
y: 11
}, {
...
}, {
x: 10
y: 6
}
];
var ...
1
vote
1answer
20 views
Find all the coordinates between two points (in 3d)
Point 1: 0, 0, 0
Point 2: 10, 10, 3
What I need is to figure out how to get all the coordinates in between the two points so for example it would output
0, 0, 0
0, 0, 1
0, 0, 2
0, 0, 3
0, 1, 0
0, ...
0
votes
1answer
35 views
Is it possible to print a windows form from set X,Y coordinates
I am able to print the entire windows form but the top of the printout is not necessary. Is there a way to print from specific coordinates i.e X = 0 Y = 50.
This is the code i use to print the ...
0
votes
1answer
45 views
Simulating cloud chamber tracks
I'm trying to recreate cloud chamber tracks on python, but am really struggling with the coding as it is much more complicated than any previous python work I have done. The set up is as follows:
I ...
1
vote
1answer
55 views
Keeping Position with Jquery draggable box
I have been trying to make a jquery draggable text box and it worked successfully and now I am trying to get the text box to remember the coordinates of its last position. I have searched high and ...
0
votes
1answer
25 views
How to do a double array enum lookup
I've declared an enum of id and description and double array for coordinates.
public enum Location {
GRASS(0, "Green Grass"),
CHURCH(1, "A church");
private int locationId;
public ...
-2
votes
1answer
27 views
Build simple map to my game c# [closed]
I have simple car game and I want to build a simple map with coordinates of car
I start with pictureBox with my map and point on pictureBox as coordinates of car but it is not easy to determine the ...
0
votes
1answer
26 views
I need some thoughts about the design of my database, related to storing coordinates
I want to design a database for storing the location (latitude and longitude) of several buses (it would be a tracking app). So, I will have one device in each bus, sending this location every 10 ...
3
votes
1answer
84 views
Calculus to convert Y coordinates for purpose of updating bpm in a metronome
I'm in the course of developing a metronome for iPad. I'm using CGAffineTransformRotate for the metronomeArm animation, NSTimer(I'm not interested in great precision) for sound and a ...
0
votes
1answer
42 views
Rectangle is not drawn at its original coordinates
I am facing problem while creating a CustomView which draw a Rectangle and can re-size by its corners.
Following is my code.
public class CustomView extends View {
Canvas canvas;
private ...
0
votes
3answers
37 views
Hello, i need to figure out how to change coordinates. not a GUI
I am using Microsoft visual C++ express 2010
i have a variables:
int x, that represents the position of a video game character. (their is a Y of course)
The program loops and each time it changes X ...
1
vote
0answers
42 views
Move ImageView through animation
I just want to move Tokens in Ludo board using animation. For this I have taken coordinates of every ImageView(position) of ludo board. From where every token (red, blue, yellow, green colors) will ...
0
votes
1answer
30 views
Converting mouse coordinates to label coordinates in Qt
I'm in trouble with such issue:
I need to select some area with rect on my label, I'm using QRubberBand to do this, but there is one problem: I need to know coordinates of current rect on my label, ...
1
vote
0answers
37 views
WPF ZoomControl and Adorners
This my first post on stack overflow, I hope I get it right. I am using the ZoomControl from WPF Extensions to display an image with pan and zoom support:
<DockPanel Grid.Row="1" ...
0
votes
0answers
8 views
Get pictures from Panoramio accrording to bounding box
Unfortunatly I am new to programming issues and need a clarification regarding panoramio APIs. I have the following generic link:
...
0
votes
0answers
4 views
Making particular part of image transperent
I am trying to highlight a part of world map when I do a mouse over. I want to make only that area transparent when I do a mouse over. Could some one help me on this.
<div>
<img ...
-1
votes
0answers
31 views
Change the coordinates value into a picture in PHP [closed]
if I have the coordinates for example:
x = 3 and y = 4.
How do I change that value to be a "point" in an image with PHP?!
Here is a preview of the image
0
votes
2answers
22 views
Generate all coordinates of earth?
Does somebody know an algorithm that calculates/generates all coordinates of earth?
I want to generate a dot mesh with a very high resolution. Each dot represents one real coordinate of earth. ...
0
votes
2answers
52 views
libgdx coordinate system differences between rendering and touch input
I have a screen (BaseScreen implements the Screen interface) that renders a PNG image. On click of the screen, it moves the character to the position touched (for testing purposes).
public class ...
0
votes
1answer
24 views
Math: converting coordinate system to other system
I want to convert a map of 1200x1000 pixels to iPhone screen coordinates (480x360) so I can do some manipulation of where to user touches on screen. So let´s say I got 'player' on the map and he is at ...
0
votes
1answer
13 views
How to create a cache system for map areas queries
I'm asking to a database of points (lat/lng) specific areas, for example, from lat1,lng1 to lat2, lng2 . That generates like "square areas queries".
Then after some queries (caching those areas ...
2
votes
2answers
41 views
How to select/find coordinates within a distance from a list (X/Y) using R
I have a data frame with list of X/Y locations (>2000 rows). What I want is to select or find all the rows/locations based on a max distance. For example, from the data frame select all the locations ...
1
vote
2answers
62 views
Create a line using a list of coordinates in python GUI
I've been trying to create a graph using a create_line and a list of (x,y) points.
import Tkinter
Screen = [a list of screen coordinates]
World = []
for x,y in screen:
...
0
votes
1answer
24 views
Mapping google maps coordinate from a javascript variable
I can successfully generate a google map with the code below:
var myLatlng = new google.maps.LatLng(37.77493, -122.419415);
var myOptions = {
zoom: 15,
center: myLatlng,
mapTypeId: ...
1
vote
0answers
38 views
RMSE of (x,y) coordinates
I have a data set of coordinates (X,Y) values in the Cartesian plane and I would like to find the RMSE of these points to 1 coordinate (x1,y1). So basically, (X,Y) are around (x1,y1) and I would like ...
0
votes
0answers
21 views
Trying to get 8-way closest angle between vectors
Basically, I'm trying to combine the answers from these two posts:
http://gamedev.stackexchange.com/questions/49290/whats-the-best-way-of-translating-a-2d-vector-into-the-closest-8-way-compass-di
...
0
votes
1answer
20 views
scaling geo coordinates in D3.js
I like to draw a circle in each coordinate. Using only width, height, and coordinates, how do I scale the coordinates? I'm very new to D3.js and I guess I'm doing something wrong with the projection ...
0
votes
1answer
26 views
Creating a google map
I am going to go out on a limb here and ask if someone knows any good solution on how to map coordinates on a world map without using Google maps. I tried searching Google but didn't find anything ...
0
votes
1answer
28 views
how to select an option from “attach” in message application using monkey runner
I am trying to automate sending of MMS using a monkey runner script which is a python script.I am getting the co-ordinates from hierarchy viewer for touch/press functions.But the problem is all these ...
0
votes
0answers
27 views
Check if above block and find closest if x coords overlap
I've got the following code: http://definedcodehosting.com/pebble.txt
Basically in this section:
GRect r1 = layer_get_frame(&player.playerContainer.layer.layer);
for (bcount = 0; bcount ...
0
votes
1answer
43 views
3D coordinate rotation lacking Precision in perspective 2D
So I wrote a Program to draw and display a 3D cube, using these simple conversion formula's as used in isometric graphs:
x2 = x*cos(30) - y*cos(30)
y2 = x*sin(30) + y*sin(30) + z
The coordinate ...
0
votes
1answer
31 views
Is there any other way to calculate X value in coords of other coord system?
Sorry, for weird topic name, but I don't know how else to name it.
The problem is.. I have a zedgraph control. There is some lines drawn inside.
I have the coords of left border of chart area and ...
0
votes
1answer
38 views
Bitmap coordinates after canvas.scale
I need help at getting the correct coordinates when touching the canvas.
I have an image that is 1240x1756
The user can scroll around on this bitmap. It is the bitmap attached to the canvas. I do ...
0
votes
1answer
43 views
Cant get new location after stopUpdatingLocation - IOS
I'm trying to get a users GPS coordinates from my app, which works fine, once. When the view gets called I run the code and get the location - good - but when I get back to the view I want NEW ...
0
votes
1answer
35 views
Javascript charting libraries for lines on coordinate plane
What would be the easiest to use javascript (line) plotting libraries for data that looks like this?:
[ {"Name" : [1.5, 2.3]}, {"Name" : [5.6, 6.7]}, ... ]
Each "Name" => [x,y] pair. "Name"'s would ...


