The new World Geodetic System was called WGS 84. It is currently the reference system being used by GPS.
je kunt ook Google Maps gewoon de coordinaten invullen (ipv straat/plaats):
There are three commonly used units types:
Online convert tools:
javascript:void(prompt('',gApplication.getMap().getCenter()));
In Google Maps, you can export your map with the button “View in Google Earth” (NL: “Weergeven in Google Earth”). This will download a KML file. But this KML does NOT contain the GPS coordinates. Instead it contains a web-reference (HREF) to Google Maps.
Example:
<?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://earth.google.com/kml/2.2"> <Document> <name></name> <description><![CDATA[]]></description> <NetworkLink> <name></name> <Link> <href>http://maps.google.nl/maps/ms?hl=nl&... &msid=103949872864124130000.0001234b8d6c93f97656a&output=kml </href> </Link> </NetworkLink> </Document> </kml>
Here is how to get the KML-file with all the GPS coordinates:
This is an example of the resulting KML-file:
<?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://earth.google.com/kml/2.2"> <Document> <name>d0907 Tour de Vin de France</name> <description><![CDATA[]]></description> <Placemark> <name>Le Brulot</name> <description> <![CDATA[<div dir="ltr">Antibes<br>Le Brulot 3</div>]]> </description> <styleUrl>#style12</styleUrl> <Point> <coordinates>7.127367,43.581200,0.000000</coordinates> </Point> </Placemark> </Document> </kml>
Short version:
Geocoding is the process of converting addresses (like "1600 Amphitheatre Parkway, Mountain View, CA") into geographic coordinates (like latitude 37.423021 and longitude -122.083739), which you can use to place markers or position the map.