[GIS] csv to kml converter

convertcsvgoogle earth

Does anyone know a workable and stable program which converts csv extension files to kml?

There are many tools available online but none of them worked for me.
I tried many including

  1. kmlcsv
  2. Choon-Chern Lim

I will be grateful if someone can direct me to something working.

Best Answer

There are 2 immediate options that would best get you where you are trying to go.

  1. Your first, and probably easiest option, would be to download Quantum GIS, using the OSGeo4W Installer.

    Once you have installed that program, follow this tutorial, which covers Importing a .csv file to QGIS.

    Once you have imported the file, simply right click on the layer in the table of contents, choose Save As, and save as ".kml".

    Here is a link to the QGIS User Documentation, to help you get started.

  2. Try the OGR Simple Features Library, specifically the ogr2ogr utility. This program lets you specify your input file, input file format, output file, and output file format, as well as projections and geometry columns, if necessary.

    Here is the section of documentation about reading CSV files, and creating spatially enabled layers from them: Comma Separated Value

Related Question