Searched refs:latitude (Results 1 - 15 of 15) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DLocalMediaItem.java40 public double latitude = INVALID_LATLNG; field in class:LocalMediaItem
66 latLong[0] = latitude;
93 if (GalleryUtils.isValidLocation(latitude, longitude)) {
94 details.addDetail(MediaDetails.INDEX_LOCATION, new double[] {latitude, longitude});
H A DLocalVideo.java105 latitude = cursor.getDouble(INDEX_LATITUDE);
137 latitude = uh.update(latitude, cursor.getDouble(INDEX_LATITUDE));
H A DLocalImage.java137 latitude = cursor.getDouble(INDEX_LATITUDE);
156 latitude = uh.update(latitude, cursor.getDouble(INDEX_LATITUDE));
249 if (GalleryUtils.isValidLocation(latitude, longitude)) {
/packages/apps/Camera2/src/com/android/camera/data/
H A DRotationTask.java129 double latitude = 0;
132 latitude = latLong[0];
139 imageData.getHeight(), data.getSizeInBytes(), latitude, longitude);
H A DLocalMediaData.java86 int width, int height, long sizeInBytes, double latitude,
97 mLatitude = latitude;
378 long sizeInBytes, double latitude, double longitude) {
380 path, width, height, sizeInBytes, latitude, longitude);
427 double latitude = c.getDouble(COL_LATITUDE);
431 sizeInBytes, latitude, longitude);
661 double latitude, double longitude, long durationInSeconds) {
663 path, width, height, sizeInBytes, latitude, longitude);
741 double latitude = c.getDouble(COL_LATITUDE);
746 latitude, longitud
84 LocalMediaData(long contentId, String title, String mimeType, long dateTakenInMilliSeconds, long dateModifiedInSeconds, String path, int width, int height, long sizeInBytes, double latitude, double longitude) argument
375 PhotoData(long id, String title, String mimeType, long dateTakenInMilliSeconds, long dateModifiedInSeconds, String path, int orientation, int width, int height, long sizeInBytes, double latitude, double longitude) argument
658 VideoData(long id, String title, String mimeType, long dateTakenInMilliSeconds, long dateModifiedInSeconds, String path, int width, int height, long sizeInBytes, double latitude, double longitude, long durationInSeconds) argument
[all...]
/packages/apps/FMRadio/src/com/android/fmradio/
H A DFmUtils.java210 * @return the list of latitude and longitude
217 double latitude = Double.valueOf(strLatitude);
219 return new double[] { latitude, longitude };
225 public static void setLastSearchedLocation(Context context, double latitude, double longitude) { argument
228 String strLatitude = Double.valueOf(latitude).toString();
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DGalleryUtils.java266 public static boolean isValidLocation(double latitude, double longitude) { argument
268 return (latitude != MediaItem.INVALID_LATLNG || longitude != MediaItem.INVALID_LATLNG);
271 public static String formatLatitudeLongitude(String format, double latitude, argument
275 return String.format(Locale.ENGLISH, format, latitude, longitude);
278 public static void showOnMap(Context context, double latitude, double longitude) { argument
280 // We don't use "geo:latitude,longitude" because it only centers
285 latitude, longitude);
294 String url = formatLatitudeLongitude("geo:%f,%f", latitude, longitude);
H A DSaveVideoFileUtils.java123 double latitude = cursor.getDouble(1);
128 if ((latitude != 0f) || (longitude != 0f)) {
129 values.put(Video.Media.LATITUDE, latitude);
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
308 long locationKey = (long) (((latitude + LAT_MAX) * 2 * LAT_MAX
320 List<Address> addresses = mGeocoder.getFromLocation(latitude, longitude, 1);
372 return lookupAddress(latitude, longitud
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/provider/
H A DGalleryProvider.java139 double latitude = PicasaSource.getLatitude(image);
141 boolean isValidLatlong = GalleryUtils.isValidLocation(latitude, longitude);
158 columnValues[i] = isValidLatlong ? latitude : null;
/packages/apps/Camera2/src/com/android/camera/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
1933 Rational[] latitude = getTagRationalValues(TAG_GPS_LATITUDE);
1937 if (latitude == null || longitude == null || latitudeRef == null || longitudeRef == null
1938 || latitude.length < 3 || longitude.length < 3) {
1942 latLon[0] = convertLatOrLongToDouble(latitude, latitudeRef);
1980 * Creates and sets all to the GPS tags for a give latitude and longitude.
1982 * @param latitude a GPS latitude coordinat
1986 addGpsTags(double latitude, double longitude) argument
[all...]
/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
1933 Rational[] latitude = getTagRationalValues(TAG_GPS_LATITUDE);
1937 if (latitude == null || longitude == null || latitudeRef == null || longitudeRef == null
1938 || latitude.length < 3 || longitude.length < 3) {
1942 latLon[0] = convertLatOrLongToDouble(latitude, latitudeRef);
1980 * Creates and sets all to the GPS tags for a give latitude and longitude.
1982 * @param latitude a GPS latitude coordinat
1986 addGpsTags(double latitude, double longitude) argument
[all...]
/packages/apps/Launcher3/WallpaperPicker/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
1933 Rational[] latitude = getTagRationalValues(TAG_GPS_LATITUDE);
1937 if (latitude == null || longitude == null || latitudeRef == null || longitudeRef == null
1938 || latitude.length < 3 || longitude.length < 3) {
1942 latLon[0] = convertLatOrLongToDouble(latitude, latitudeRef);
1980 * Creates and sets all to the GPS tags for a give latitude and longitude.
1982 * @param latitude a GPS latitude coordinat
1986 addGpsTags(double latitude, double longitude) argument
[all...]
/packages/apps/Mms/src/com/android/mms/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
1933 Rational[] latitude = getTagRationalValues(TAG_GPS_LATITUDE);
1937 if (latitude == null || longitude == null || latitudeRef == null || longitudeRef == null
1938 || latitude.length < 3 || longitude.length < 3) {
1942 latLon[0] = convertLatOrLongToDouble(latitude, latitudeRef);
1980 * Creates and sets all to the GPS tags for a give latitude and longitude.
1982 * @param latitude a GPS latitude coordinat
1986 addGpsTags(double latitude, double longitude) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
H A DSaveImage.java725 double latitude = cursor.getDouble(1);
729 if ((latitude != 0f) || (longitude != 0f)) {
730 values.put(Images.Media.LATITUDE, latitude);

Completed in 215 milliseconds