File tree Expand file tree Collapse file tree
src/ImageSharp/Metadata/Profiles/Exif
tests/ImageSharp.Tests/Metadata/Profiles/Exif/Values Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -165,4 +165,9 @@ public abstract partial class ExifTag
165165 /// Gets the GPSDestDistance exif tag.
166166 /// </summary>
167167 public static ExifTag < Rational > GPSDestDistance { get ; } = new ExifTag < Rational > ( ExifTagValue . GPSDestDistance ) ;
168+
169+ /// <summary>
170+ /// Gets the GPSHPositioningError exif tag.
171+ /// </summary>
172+ public static ExifTag < Rational > GPSHPositioningError { get ; } = new ExifTag < Rational > ( ExifTagValue . GPSHPositioningError ) ;
168173}
Original file line number Diff line number Diff line change @@ -1691,6 +1691,11 @@ internal enum ExifTagValue
16911691 /// </summary>
16921692 GPSDifferential = 0x001E ,
16931693
1694+ /// <summary>
1695+ /// GPSHPositioningError
1696+ /// </summary>
1697+ GPSHPositioningError = 0x001F ,
1698+
16941699 /// <summary>
16951700 /// Used in the Oce scanning process.
16961701 /// Identifies the scanticket used in the scanning process.
Original file line number Diff line number Diff line change @@ -241,6 +241,8 @@ internal static partial class ExifValues
241241 return new ExifRational ( ExifTag . GPSDestBearing ) ;
242242 case ExifTagValue . GPSDestDistance :
243243 return new ExifRational ( ExifTag . GPSDestDistance ) ;
244+ case ExifTagValue . GPSHPositioningError :
245+ return new ExifRational ( ExifTag . GPSHPositioningError ) ;
244246
245247 case ExifTagValue . WhitePoint :
246248 return new ExifRationalArray ( ExifTag . WhitePoint ) ;
Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ public class ExifValuesTests
128128 { ExifTag . GPSImgDirection } ,
129129 { ExifTag . GPSDestBearing } ,
130130 { ExifTag . GPSDestDistance } ,
131+ { ExifTag . GPSHPositioningError } ,
131132 } ;
132133
133134 public static TheoryData < ExifTag > RationalArrayTags => new TheoryData < ExifTag >
You can’t perform that action at this time.
0 commit comments