1
vote
1answer
65 views

Data points Imported into QGIS are in the middle of ocean

I'm new to QGIS and tried importing some GTFS data in the CSV format (stops.txt). The project CRS, base map CRS and GTFS CRS have all been set to Google Mercator, but the points that are supposed to ...
7
votes
2answers
482 views

Nearest point on a line ( Spherical / Mercator projection )

I have a line (Ax,Ay - Bx,By) over a mercator projection (google maps) and a random point (Cx,Cy) nearest to that line, i would to know the closest point (transparent blue on the image) over that line ...
0
votes
1answer
124 views

Spherical Mercator to Cylinder mercator?

Hello I want to create an overlay for google maps. As far as I know google maps using Spherical Mercator, so the system where I read the maps use Mercator but is not specified which (spherical or ...
0
votes
4answers
767 views

How to plot a point on a static Google map [png]?

map&markers=color:blue%7Clabel:S%7C40.702147,-74.015794&markers=color:green%7Clabel:G%7C40.711614,-74.012318&markers=color:red%7Ccolor:red%7Clabel:C%7C40.718217,-73.998284&sensor=false ...
1
vote
1answer
542 views

How to convert Lat & Long from Onemap.sg to Google Maps

I have a set of address for Singapore, I would like to take the Lat & Long from onemap.sg (SYV21: X, Y / Easting, Northing) and then store it in my databse , convert into (WGS84: Longitude, ...
0
votes
1answer
3k views

How to convert from UTM Zone 36N Mercator to WGS 84 degrees of lat and long?

I have acquired many coordinates from a points I extracted from polygons. The points are in WGS 84 UTM Zone 36N, and I want to use them on Google Maps. I found out that they use different systems (I ...
3
votes
1answer
875 views

MS SQL Server's STDistance output differs from Google Earth/Maps straight line distance

I am testing SQL Server STDistance function in the following way: DECLARE @g geography; DECLARE @h geography; SET @g = geography::STGeomFromText('POINT(53.553813 9.99158)', 4326); SET @h = ...