Ignore:
Timestamp:
2019-07-07T01:56:46+02:00 (5 years ago)
Author:
Don-vip
Message:

see #17848 - update to metadata-extractor 2.12.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/drew/metadata/exif/GpsDirectory.java

    r13061 r15217  
    11/*
    2  * Copyright 2002-2017 Drew Noakes
     2 * Copyright 2002-2019 Drew Noakes and contributors
    33 *
    44 *    Licensed under the Apache License, Version 2.0 (the "License");
     
    9595    /** Distance to destination GPSDestDistance 26 1A RATIONAL 1 */
    9696    public static final int TAG_DEST_DISTANCE = 0x001A;
    97 
    98     /** Values of "GPS", "CELLID", "WLAN" or "MANUAL" by the EXIF spec. */
     97    /** Name of the method used for location finding GPSProcessingMethod 27 1B UNDEFINED Any */
    9998    public static final int TAG_PROCESSING_METHOD = 0x001B;
     99    /** Name of the GPS area GPSAreaInformation 28 1C UNDEFINED Any */
    100100    public static final int TAG_AREA_INFORMATION = 0x001C;
     101    /** Date and time GPSDateStamp 29 1D ASCII 11 */
    101102    public static final int TAG_DATE_STAMP = 0x001D;
     103    /** Whether differential correction is applied GPSDifferential 30 1E SHORT 1 */
    102104    public static final int TAG_DIFFERENTIAL = 0x001E;
     105    /** Horizontal positioning errors GPSHPositioningError 31 1F RATIONAL 1 */
     106    public static final int TAG_H_POSITIONING_ERROR = 0x001F;
    103107
    104108    @NotNull
     
    140144        _tagNameMap.put(TAG_DATE_STAMP, "GPS Date Stamp");
    141145        _tagNameMap.put(TAG_DIFFERENTIAL, "GPS Differential");
     146        _tagNameMap.put(TAG_H_POSITIONING_ERROR, "GPS H Positioning Error");
    142147    }
    143148
Note: See TracChangeset for help on using the changeset viewer.