What is the projection of a Location object returned from the LocationClient by a class implementing the LocationListener interface with a fused provider in the Google Play Services SDK? For example, if I performed the following,
1)
Location mLocation = mLocationClient.getLastLocation();
double mLongitude = mLocation.getLongitude();
double mLatitude = mLocation.getLatitude();
2) converted those values to String objects,
3) performed I/O to a file/network/database,
4) converted or outputted them to a .csv file of the form,
Longitude,Latitude
-85.26418009999999,35.1050902
5) and then finally imported this file into QGIS, what projection would I choose?