Comma Separated Value (.csv) files

The GDAL CSV file format provides a simple but effective way to interchange point data. Files may be loaded directly into Vizex using drag and drop, or from the Display | GIS form.

Example (Holes.csv):

HOLE,EAST,NORTH,Z,DTM, DESCRIPTION
DDH001,24708.00,15670.00,1521.61,A,Pit
DDH002,24728.00,15670.00,1516.42,B,Pit
DDH003,24766.00,15670.00,1509.71,C,Dump 
DDH004,24902.00,15900.00,1544.00,E,"Dump ""Backfill"""	

Note:

The Description value for the last record (above) is placed in double quotes because the value contains quotes, and those quotes have to be doubled up so we know we have yet to reach the end of the quoted string.

Scripts or text editors that support recordable macros, such as Notepad ++, can be used to convert non-compatible CSV file formats into a form that is compatible with the OGR CSV driver.

For more information on reading CSV file data containing spatial information, see: http://www.gdal.org/drv_csv.html