CameraCaptureSettings ccs = dcc.getCameraCaptureSettings();
GPSData gps = ccs.getGPSData();
String gpsVersionID = gps.getGpsVersionID().toString();
assertEquals ("99.5", gpsVersionID);
GPSDestLatitude dlat = gps.getGPSDestLatitude();
double deg = dlat.getDegrees().toRational().getDouble();
double min = dlat.getMinutes().toRational().getDouble();
double sec = dlat.getSeconds().toRational().getDouble();
assertTrue ((int) deg == 33);
assertTrue ((int) min == 24);
assertTrue ((int) sec == 51);
BasicImageInformation bii = mix.getBasicImageInformation();