Searched defs:longitude (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DLocalMediaItem.java41 public double longitude = INVALID_LATLNG; field in class:LocalMediaItem
67 latLong[1] = longitude;
93 if (GalleryUtils.isValidLocation(latitude, longitude)) {
94 details.addDetail(MediaDetails.INDEX_LOCATION, new double[] {latitude, longitude});
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DReverseGeocoder.java58 // The latitude and longitude of the min latitude point.
61 // The latitude and longitude of the max latitude point.
64 // The latitude and longitude of the min longitude point.
67 // The latitude and longitude of the max longitude point.
305 public Address lookupAddress(final double latitude, final double longitude, argument
309 + (longitude + LON_MAX)) * EARTH_RADIUS_METERS);
320 List<Address> addresses = mGeocoder.getFromLocation(latitude, longitude, 1);
372 return lookupAddress(latitude, longitude, fals
[all...]
H A DGalleryUtils.java261 public static boolean isValidLocation(double latitude, double longitude) { argument
263 return (latitude != MediaItem.INVALID_LATLNG || longitude != MediaItem.INVALID_LATLNG);
267 double longitude) {
270 return String.format(Locale.ENGLISH, format, latitude, longitude);
273 public static void showOnMap(Context context, double latitude, double longitude) { argument
275 // We don't use "geo:latitude,longitude" because it only centers
280 latitude, longitude);
289 String url = formatLatitudeLongitude("geo:%f,%f", latitude, longitude);
266 formatLatitudeLongitude(String format, double latitude, double longitude) argument
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifInterface.java1898 * Gets the double representation of the GPS latitude or longitude
1925 * Gets the GPS latitude and longitude as a pair of doubles from this
1928 * @return an array of 2 doubles containing the latitude, and longitude
1935 Rational[] longitude = getTagRationalValues(TAG_GPS_LONGITUDE);
1937 if (latitude == null || longitude == null || latitudeRef == null || longitudeRef == null
1938 || latitude.length < 3 || longitude.length < 3) {
1943 latLon[1] = convertLatOrLongToDouble(longitude, longitudeRef);
1980 * Creates and sets all to the GPS tags for a give latitude and longitude.
1983 * @param longitude a GPS longitude coordinat
1986 addGpsTags(double latitude, double longitude) argument
[all...]

Completed in 101 milliseconds