Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Importing CSV File to Google Maps

I have an quite big CSv File I want to have in Google Maps or just on a map. These are just coordinates but I have 600.000 of them..

Do you have any Idea how I can do this?

I've added an screenshot from XTabulator below: csv file

like image 746
woodleader Avatar asked May 02 '11 15:05

woodleader


People also ask

Can I upload a CSV file to Google Maps?

Comma-Separated Variable (CSV) FilesIn a new map, click Import to add the CSV placemarks to a layer. If you named your columns latitude and longitude, Choose columns to position your placemarks should find them. Choose a column to title your markers.


1 Answers

The easiest way to do this is generate a KML file (see http://code.google.com/apis/kml/articles/csvtokml.html for a possible solution). You can then open that up in Google Maps by storing it online and linking to it from Google Maps as described at http://code.google.com/apis/kml/documentation/whatiskml.html

EDIT: http://www.gpsbabel.org/ may let you do it without coding.

like image 100
Femi Avatar answered Oct 14 '22 19:10

Femi