I am playing around with the fantastic SemanticImport[] routine, and have run across the following small snag...
My CSV file looks like this...
City,Amount,Sold,Province,Loc,Dist Toronto,$2000.00,27-Mar-2014,Ontario,N45 W108,8 meters Montreal,$5000.00,18-Apr-2014,Quebec,N46.6 W103.5,12 meters
If I import with the HeaderLines -> 1 option, everything looks great except the Lat-Long strings, which get imported as GeoPosition[] objects, but not correctly; they look like this...
...,GeoPosition[{{0., 0., 0.}, {-45., 0., 0.}}],... ...,GeoPosition[{{0., 0., 0.}, {-46.6, 0., 0.}}],...
So it is making a heroic stab, but seems to be choking on the west longitudes, and is converting the north latitudes to longitudes.
Does anyone know how I can format my file to get this to work, or otherwise know what SemanticImport is expecting?
Thanks in advance
Brad