The map-projections tag has no wiki summary.
12
votes
9answers
1k views
Where can I find the coordinates needed to draw the US in the Mercator projection?
So I'm writing a Javascript library that takes x,y coordinates and uses them to draw a map of the US. To do this, I need to find the coordinate data necessary to draw each state. This map on ...
6
votes
1answer
1k views
How to transform coordinate from WGS84 to a coordinate in a projection with PROJ.4?
I have a GPS-coordinate in WGS84 that I would like to transform to a map-projection coordinate in SWEREF99 TM using PROJ.4 in Java or Proj4js in JavaScript.
Its hard to find documentation for PROJ.4 ...
5
votes
2answers
350 views
Conversion between different Map projections in Java
In my GIS application the data are sometimes stored in "Google Mercator" (in meters), sometimes in WGS84 LatLon.
I'd like a reliable library to convert this data easily and in a "scientific" way, ...
4
votes
2answers
146 views
Mapping of 2D Points to a new Perspective
This is my first post!
I'm trying to make an application that can determine whether certain points in a grid (image) are light or dark. The original grid is well defined (I know where all the points ...
4
votes
3answers
909 views
How to transform a distance from degrees to metres?
I'm using OpenLayers with an ordinary mercator map and I'm trying to sample a bounding box by finding a grid of points in latlong.
The bbox is expressed in latlon, e.g.
...
3
votes
2answers
42 views
Mercator map projection logic conflict
I'm looking for an explanation on why there are 2 different mercator formulas discussed on these sites.
I understand this to be the correct mercator projection algorithm:
...
3
votes
3answers
174 views
matplotlib.mlab.griddata very slow and returns array of nan when valid data is input
I am trying to map an irregularly gridded dataset (raw satellite data) with associated latitudes and longitudes to a regularly gridded set of latitudes and longitudes given by basemap.makegrid(). I ...
2
votes
1answer
77 views
Latitude/longtitude conversion to image x/y coordinates (Miller Cylindrical projection)
As already said in the title, I need some help with converting lat/long to x/y coords in Miller Cylindrical projection. I`m currently writing an app (in Java) which gets city list as an input and then ...
2
votes
1answer
61 views
vector projection in OpenLayers
I am building a GIS app in geoDjango with OpenLayers and using data from PostGIS in projection EPSG:3908.
The base layer is OSM. When I add vector data I got it rendered near Brazil instead of Bosnia.
...
2
votes
2answers
199 views
How to find relation between change in latitudes at centre of map and top/bottom
Im having little trouble finding a relation between the movement at centre and edge of a circle, Im doing for panning world map,my map extent is 180,89:-180,-89, my map pans by adding change(dx,dY) to ...
1
vote
1answer
90 views
OpenLayers EPSG900913->EPSG4326 conversion gives wrong results
I have a problem with converting pixel location from screen to degrees (EPSG4326).
The lon/lat value in EPSG900913 is correct, according to http://proj4js.org/ and google maps.
Some example values ...
1
vote
1answer
217 views
Changing image projection using Python
Image corner coordinates are known:
Top left: (70.20315, 20.92749)
Top right: (70.20315, 31.45240)
Bottom left: (59.70571, 20.92749)
Bottom right: (59.70571, 31.45240)
(Basically map over Finland ...
1
vote
0answers
199 views
Openlayers geometry how to calculate area from square degrees to square kilometres?
I get the multypoligon from webservice and I try to calculate area for that poligon with the following code:
var poly = new OpenLayers.Geometry.MultiPolygon(poligon);
var area = geom.getArea();
But ...
1
vote
1answer
751 views
Implement Google Mercator (Spherical Mercator)
I would like to use the Spherical Mercator algorithm in my application to project lat/lon points to a 2D plane.
The Spherical Mercator is also known as Google Mercator, EPSG-900913 or EPSG-3785.
...
1
vote
2answers
270 views
Proj4 reprojection using R
I am trying to reproject coordinates from WGS84 to MGA Zone 53, a UTM projection based on the GDA94 datum. I get infinity as my result, which is definitely incorrect. I am using R's proj4 package ...
1
vote
1answer
301 views
Orthographic projections in Google Earth (/Sky) possible? Alternatives?
I need to create whole-sky maps, but Google Earth in Sky mode has limited "zoom out." Is it possible to create an orthographic map projection with Google Earth (or, for that matter, MS Virtual Earth)? ...
1
vote
1answer
416 views
Google Maps Custom Projection
I have created a custom Google Maps projection using the Google Maps Javascript API V2. It looks like this, as per the API specification:
function PProjection(levels) {
this.fromLatLngToPixel = ...
1
vote
1answer
992 views
Java Simple WGS84 Lat Lon to Pixel X, Y
I've read a multitude of information regarding map projection today. The amount of information available is overwhelming.
I am attempting to simply convert lat, long values into a screen X, Y ...
0
votes
0answers
56 views
Overlapping map tiles with mapnik's generate_tiles.py script
I'm trying to generate map tiles using the mapnik's generate_tiles.py script, but the resulting tiles are overlapped.
Example
The tiles have the following directory structure: ...
0
votes
1answer
102 views
OpenGL get 2d projection from 3d points
I have display a collection of 3d cloud points by this code:
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_COLOR_ARRAY);
if (keyframes[i]->numberOf3DPoints > 0)
{
...
0
votes
1answer
97 views
How can I read WKT from the spape file .prj?
I am currently build the system which is lets user upload they shape files and converting it systematically to postgis by using shp2pgsql. With this command required to parse the epsg code.
So I need ...
0
votes
1answer
381 views
Android: How To: mark the current location into a map (still image) - SOURCE CODE,TESTCASE,ACTUAL,EXPECTED OUTPUT ADDED
I have created another question (How to display a map (still image file) with a moving current location)
But it contains 2 (two) questions, so i need to segregate it.
I am trying to create a ...
0
votes
1answer
68 views
lambert 2008 projection
I need to write a function that can project some location defined by latitude/longitue to x,y coordinates on a map (image).
The map itself seems to be using "belgian Lambert" as projection type.
I ...
0
votes
0answers
122 views
Help with transforming cartesian coordinates to screen coordinates
I'm building an application (C#, .NET framework) for boaters to conduct a wide range of navigation tasks. I need it to be able to read in data from a variety of map formats and display the underlying ...
0
votes
0answers
101 views
unable to display all zoom levels for ArcGIS cached map with spatial reference 26910
I am trying to set: http://maps1.crdatlas.ca/GIS9x/rest/services/Cached/cache-base2/MapServer as the baselayer of my map. It has a spatial reference of 26910 and the units is esriMeters.
At level 0, ...
0
votes
1answer
264 views
What does the google.maps.Projection class do?
Recently I found out the hard way that to convert between LatLngs and pixel coordinates on screen I shouldn't use the Projection class that is easily accessed through Map.getProjection, but instead I ...
0
votes
1answer
398 views
Opanlayers Reprojection Kml layer
I have a map with 'EPSG:32639' projection for base map and 'EPSG:4326' projection for kml layer that show on base map. It just show my basemap and do not show any kml layer. what's wrong with that?
...
0
votes
2answers
260 views
Simple map projection
I've a map of 400x400 that approximatively represents an area of 250x250km in that I want to project a GPS coordinate in form of Lat/Lon.
Taking in account that precision is not very important(errors ...
0
votes
4answers
366 views
How Can I Proj4 details from the Shape File's .prj file?
I am using mapdotnet services for our gis application to load the shape files and this mapdotnet service want the proj4 details and that getting from the spatialreference.org but for this proj4 ...
0
votes
1answer
207 views
Using LINQ to map dynamically (or construct projections)
I know I can map two object types with LINQ using a projection as so:
var destModel = from m in sourceModel
select new DestModelType {A = m.A, C = m.C, E = m.E}
where
class ...
0
votes
1answer
992 views
Hot to convert UTM to Lat/Long?
Is there a way to convert UTM to Lat/Long in Javascript? I have seen another thread on this but it was in Java and Python which won't help me much. Please let me know, thanks.
0
votes
3answers
2k views
java transform projection EPSG:900913 to EPSG:4326
in the openlayers
we can simple transform EPSG:900913 to EPSG:4326
I'm look for a java lib can do that.
here I found this,
http://www.jhlabs.com/java/maps/proj/index.html
but the document is in c++
...
-2
votes
3answers
1k views
How can I convert UTM coordinates from Meters to Feet?
Does anyone have a formula or conversion that will switch my UTM coordinates from Meters to Feet? I found Javascript code that will convert UTM coords in meters to Lat/Long but I will need my UTM in ...