OSDN Git Service

Add prefix to GPS tag in ExifTag
authorEarl Ou <shunhsingou@google.com>
Thu, 30 Aug 2012 04:01:05 +0000 (12:01 +0800)
committerAndroid (Google) Code Review <android-gerrit@google.com>
Thu, 30 Aug 2012 07:54:46 +0000 (00:54 -0700)
Change-Id: Ib07d2847ddcbed3b06d07afa2a6d5851c27760b1

src/com/android/gallery3d/exif/ExifTag.java

index fd5826e..fad47d6 100644 (file)
@@ -266,37 +266,37 @@ public class ExifTag {
     }
 
     public static interface GPS_TAG {
-        public static final short GPS_VERSION_ID = 0;
-        public static final short GPS_LATITUDE_REF = 1;
-        public static final short GPS_LATITUDE = 2;
-        public static final short GPS_LONGITUDE_REF = 3;
-        public static final short GPS_LONGITUDE = 4;
-        public static final short GPS_ALTITUDE_REF = 5;
-        public static final short GPS_ALTITUDE = 6;
-        public static final short GPS_TIME_STAMP = 7;
-        public static final short GPS_SATTELLITES = 8;
-        public static final short GPS_STATUS = 9;
-        public static final short GPS_MEASURE_MODE = 10;
-        public static final short GPS_DOP = 11;
-        public static final short GPS_SPEED_REF = 12;
-        public static final short GPS_SPEED = 13;
-        public static final short GPS_TRACK_REF = 14;
-        public static final short GPS_TRACK = 15;
-        public static final short GPS_IMG_DIRECTION_REF = 16;
-        public static final short GPS_IMG_DIRECTION = 17;
-        public static final short GPS_MAP_DATUM = 18;
-        public static final short GPS_DEST_LATITUDE_REF = 19;
-        public static final short GPS_DEST_LATITUDE = 20;
-        public static final short GPS_DEST_LONGITUDE_REF = 21;
-        public static final short GPS_DEST_LONGITUDE = 22;
-        public static final short GPS_DEST_BEARING_REF = 23;
-        public static final short GPS_DEST_BEARING = 24;
-        public static final short GPS_DEST_DISTANCE_REF = 25;
-        public static final short GPS_DEST_DISTANCE = 26;
-        public static final short GPS_PROCESSING_METHOD = 27;
-        public static final short GPS_AREA_INFORMATION = 28;
-        public static final short GPS_DATA_STAMP = 29;
-        public static final short GPS_DIFFERENTIAL = 30;
+        public static final short TAG_GPS_VERSION_ID = 0;
+        public static final short TAG_GPS_LATITUDE_REF = 1;
+        public static final short TAG_GPS_LATITUDE = 2;
+        public static final short TAG_GPS_LONGITUDE_REF = 3;
+        public static final short TAG_GPS_LONGITUDE = 4;
+        public static final short TAG_GPS_ALTITUDE_REF = 5;
+        public static final short TAG_GPS_ALTITUDE = 6;
+        public static final short TAG_GPS_TIME_STAMP = 7;
+        public static final short TAG_GPS_SATTELLITES = 8;
+        public static final short TAG_GPS_STATUS = 9;
+        public static final short TAG_GPS_MEASURE_MODE = 10;
+        public static final short TAG_GPS_DOP = 11;
+        public static final short TAG_GPS_SPEED_REF = 12;
+        public static final short TAG_GPS_SPEED = 13;
+        public static final short TAG_GPS_TRACK_REF = 14;
+        public static final short TAG_GPS_TRACK = 15;
+        public static final short TAG_GPS_IMG_DIRECTION_REF = 16;
+        public static final short TAG_GPS_IMG_DIRECTION = 17;
+        public static final short TAG_GPS_MAP_DATUM = 18;
+        public static final short TAG_GPS_DEST_LATITUDE_REF = 19;
+        public static final short TAG_GPS_DEST_LATITUDE = 20;
+        public static final short TAG_GPS_DEST_LONGITUDE_REF = 21;
+        public static final short TAG_GPS_DEST_LONGITUDE = 22;
+        public static final short TAG_GPS_DEST_BEARING_REF = 23;
+        public static final short TAG_GPS_DEST_BEARING = 24;
+        public static final short TAG_GPS_DEST_DISTANCE_REF = 25;
+        public static final short TAG_GPS_DEST_DISTANCE = 26;
+        public static final short TAG_GPS_PROCESSING_METHOD = 27;
+        public static final short TAG_GPS_AREA_INFORMATION = 28;
+        public static final short TAG_GPS_DATA_STAMP = 29;
+        public static final short TAG_GPS_DIFFERENTIAL = 30;
 
         public static final String GPS_REF_NORTH = "N";
         public static final String GPS_REF_SOUTH = "S";