Tagged Questions

WGS 84 is the reference coordinate system used by the Global Positioning System

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 ...
2
votes
1answer
125 views

Accurate parallel swathing algorithm for (GPS) guidance needed

I wrote a delphi program generating a gpx file as input for a "poor man's guidance system" for aerial spray by means of ultralight plane. By and large, it produces route (parallel swaths) using gpx ...
2
votes
2answers
147 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
2answers
344 views

Coordinates conversion

I am working over a small component for a web portal that show polygons over a map, using OpenLayers, Google Maps, and another proprietary source . The user has the points in PSAD56 (UTM) datum ...
2
votes
3answers
3k views

How does getAltitude() of Android GPS Location Works

HI I tried to implement a simple GPS tracker. Therefore is used lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE); lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 0, ...
2
votes
1answer
923 views

Calculate the distance between a point and a line segment on an ellipsoid (or WGS84 coordinates)?

I have a line segment AB between two WGS84 coordinates on the earth's surface (or, alternatively, on an ellipsoid), and need to calculate the distance between a point P and the point nearest to P that ...
2
votes
3answers
761 views

Getting a handle on GIS math, where do I start?

I am in charge of a program that is used to create a set of nodes and paths for consumption by an autonomous ground vehicle. The program keeps track of the locations of all items in its map by ...
2
votes
2answers
3k views

British National Grid Shapefile - convert to WGS84 Lat/Lon

I have a set of ESRI shapefiles which, I'm told, have been written using the British National Grid coordinate system. I need to convert these files to WGS84 lat/lons, for onward conversion to KML ...
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 ...
1
vote
1answer
42 views

If You Have A GeoTiff, Would It Be Possible To Transform A Lat/Lon Point To An X,Y Using The GeoTransform?

I'm using the GDAL library. Currently, I can take in an upper left point and an upper right point and chip an image out of the original. What I'd like to do now, is take in two WKT points and ...
1
vote
1answer
333 views

Converting DATUM WGS84 coordinates for google map v3 JS Latlng Object

I am trying to convert the following to work with the Google maps v3 JS api. N37 10.320 W122 13.357 How do I convert this to work with the LatLng Object? I was expecting it to be two decimals, ...
1
vote
3answers
1k views

PHP Library: Calculate a bounding box for a given lat/lng location

I'm looking for a PHP Library / PHP Script that allows me to calculate an accurate bounding box for a given center point (lat/lon). Using an ellipsoid formula (f.ex. WGS84) would be great. I know, ...
1
vote
5answers
1k views

Is there a free .NET library to convert OSGB36 to WGS84

I need a .NET tool, preferably a library, that I can use in SSIS to convert Northing/Easting information from Collins Bartholomew (bartholomewmaps.com) into WGS84 with a ssrid of 4326 - to be used in ...
1
vote
1answer
882 views

Coordinate Transformation (LL + Elevation to WGS84)

I'm currently working on a 3D visualization project, and I came across an issue that I noticed we've been doing in a hackish way. I'm not too experienced with the WGS84 system itself, and I was ...
0
votes
3answers
99 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 ...
0
votes
0answers
110 views

NAD83 to WGS84 using Map Server

I'm in the process of adding a WAC overlay to google maps. The map tiles are projected in NAD83 (lcc), google maps is WGS84 (mercator). The WAC tiles are broken up into their individual areas as ...
0
votes
1answer
648 views

How to compute Direct and Inverse Conversion between geodetic coordinates (ECEF) to local reference (ENU)

How to convert X,Y,Z from local reference (ENU) to world reference (ECEF) and reverse it ?? Input: (lat,long) = center of the local reference system. x,y,z = position of the point,in local ...
0
votes
2answers
856 views

convert wgs 84 to lat/long

Hi I am having a little trouble figuring out how to convert between types of coordinates. I have a list of coordinate sets with the following description "Coordinates are always in the WGS84 system. ...
0
votes
1answer
550 views

Converting utm to lat long with different datums (data?)

I'm a GIS novice, but have code to convert lat/long to UTM coordinates, and it assumes the WGS84 datum. I also have a list of different values for the earth's radius, roundness, etc: Datum ...
0
votes
2answers
293 views

Spatial Data conversion and persistency issue for shapefile in OSGB36

I am looking for a tool that meets the following requirements 1) Ability to import shapefile in osgb36 format to database (sql server 2005/2008) programmatically. 2) Ability to convert OSGB36 to ...
0
votes
2answers
176 views

How do I convert a mobile phone GPS to x,y,z with origin at the center of the Earth?

I need to accurately visualize points coming from iPhone (and other) GPS data in 3D. So, what I'd like is to take a WGS84 (right?) point and transform that into an X,Y,Z vector with the origin at the ...
0
votes
2answers
268 views

Wrong coordinate format (wgs84) or am I missing something?

Dummy question here. I'm developing an app that fetches location-aware info. I'm getting location coordinates in following manner: lat=+aaa.bb.cc.dd&lon=+aaa.bb.cc.dd&datum=wgs84 How do I ...
0
votes
1answer
899 views

Get map position when WGS-84 lat/lon when upper left and lower right corners' lat/lon are given

Suppose I have a map, for example from openstreetmaps.org. I know the WGS-84 lat/lon of the upper left and lower right corner of the map. How can I find other positions on the map from given WGS-84 ...