Tagged Questions

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 ...
2
votes
2answers
149 views

getLatitudeE6() returns wrong value

public boolean onTap(GeoPoint p, MapView mapView) { String msg; double d1 = p.getLatitudeE6()/1E6; double d2 = p.getLongitudeE6()/1E6; String str1 = ...
2
votes
5answers
8k views

Java code for WGS84 to Google map position and back

Searching for some sample code for converting a point in WGS84 coordinate system to a map position in Google Maps (pixel position), also supporting zoom levels. If the codes is well commented, then ...
0
votes
3answers
100 views

Convert WGS84 to OSGB36

Is there any known java library which allows me to convert WGS 84 cords to OSGB36 or if there is a good formula I can use? I am currently using this one, but it's not very accurate so I'm wondering if ...