I was getting this error message when importing CSV file with Lat/Long in Decimal Degrees on Google Earth: “Found zero features in file”.
It was strange because when I was going to File -> Import the Google Earth was displaying the data correctly in the preview.
After some investigation I fixed the issue and it was cause because these two things:
- In the import screen click on Next and then Next again, in the Specify Field Types use type “string” to Latitude and Longitude instead of default “floating point”.
- My CSV file had a space after comma: “Name, XX.XXXXXX, XX.XXXXXX”. It should be: “Name,XX.XXXXXX,XX.XXXXXX”
After fixing these issues everything worked fine.