Tagged Questions

Proj.4 grew out of the USGS Cartographic Projection Procedures for the UNIX Environment. It is currently an open source project managed by the OSGeo. Proj.4 supports a huge number of different map projections and comes with thousands of pre-defined coordinate systems. As such, it is the most ...

learn more… | top users | synonyms

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 ...
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
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, ...
3
votes
1answer
665 views

postgis / proj 900913 to 4326 projection issues with Y coordinate

this is an oldie, but i cannot seem to find a solution. When i want to do an st_transform on a 900913 coordinate to a 4326 system, the y coordinate shifts. example: SELECT AsText( Transform( ...
3
votes
3answers
941 views

PROJ.4 library and OSGB36

hope you are well I am trying to convert lat/long coordinates to OSGB36 x and y using the proj.4 library. Has anyone else successfully done this? I need to fill the srcPrj4String and destPrj4String ...
2
votes
2answers
2k views

Convert ESRI projection coordinates to lat-lng

I have a large dataset of x,y coordinates in "NAD 1983 StatePlane Michigan South FIPS 2113 Feet" (aka ESRI 102690). I'd like to convert them to lat-lng points. In theory, this is something proj is ...
1
vote
0answers
95 views

What is wrong with this Proj4 transformation?

I'm implementing support for WMS maps in my company's software. Servers return a list of projections their maps are available in, but our software only displays data in WGS84 (lat/lon or UTM), and ...
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
3answers
745 views

lat/lon conversion to x/y-coordinates

I have a openstreetmap image. left upper corner is lat: 80 lon: -169 and right lower corner is lat:-56 lon: 190 The image has the width: 2618 and the height: 1513 How do I convert given ...
1
vote
2answers
157 views

How do I guess which geografic projection system is used for a dataset?

I have a bunch of shapefiles to convert to kml. I can open them, but I don't understand the coordinate systems they are in (nor was it provided by the creators). For instance, this should be a point ...
0
votes
0answers
78 views

How can i use GeoTools/ProJ.4(Or Other api) to convert coordinate from HK80 GRID To latitude/longtitude?

how to convert a set of hk80 grid to lat/lon? HK 1980 Grid is EPSG 2326, while Lat/Long WGS84 is EPSG 4326 Or is there any is more suitible for doing this
0
votes
1answer
127 views

GIS: How to resize layer using .prj (WKT) projection? (Geographic Coordinate System)

Briefly: How to parametrize .prj WKT file so that I can perform 7 point tranformation (wiki). I know how false_easting and false_northing params work, but how can I adjust scale? I do not mean ...
0
votes
1answer
248 views

I can't install RouteMe in Xcode

I'm trying to install the Route-Me library in Xcode so as to convert coordinates in my iphone application. I have follow this page : https://github.com/route-me/route-me/wiki/Embedding-Guide However, ...
0
votes
1answer
191 views

Precision error when transforming coordinates using proj4js

I am using the library Proj4js to transform coordinates. I'm transforming coordinates from EPSG: 23029 to EPSG: 4326. The problem is that by transforming the coordinates there is some deviation from ...