| 1 | %Image::ExifTool::UserDefined = ( |
|---|
| 2 | # XMP tags may be added to existing namespaces: |
|---|
| 3 | 'Image::ExifTool::XMP::xmp' => { |
|---|
| 4 | OriginalFilename => { Writable => 'string' , Groups => { 2 => 'Document' } }, |
|---|
| 5 | ProjectCode => { Writable => 'string' , Groups => { 2 => 'Document' } }, |
|---|
| 6 | Year => { Writable => 'integer', Groups => { 2 => 'Time' } }, |
|---|
| 7 | FlightDayOfYear => { Writable => 'integer', Groups => { 2 => 'Time' } }, |
|---|
| 8 | Sortie => { Writable => 'string' , Groups => { 2 => 'Time' } }, |
|---|
| 9 | GPSTimeOfWeek => { Writable => 'real' , Groups => { 2 => 'Time' } }, |
|---|
| 10 | UTCTimeStamp => { Writable => 'string' , Groups => { 2 => 'Time' } }, |
|---|
| 11 | PlaneOrientation => { Writable => 'string' , Groups => { 2 => 'Location' } }, |
|---|
| 12 | LocationName => { Writable => 'string' , Groups => { 2 => 'Location' } }, |
|---|
| 13 | LatitudeNorthPositive => { Writable => 'real' , Groups => { 2 => 'Location' } }, |
|---|
| 14 | LongitudeEastPositive => { Writable => 'real' , Groups => { 2 => 'Location' } }, |
|---|
| 15 | Height => { Writable => 'real' , Groups => { 2 => 'Location' } }, |
|---|
| 16 | ExteriorAnglesOmega => { Writable => 'real' , Groups => { 2 => 'Location' } }, |
|---|
| 17 | ExteriorAnglesPhi => { Writable => 'real' , Groups => { 2 => 'Location' } }, |
|---|
| 18 | ExteriorAnglesKappa => { Writable => 'real' , Groups => { 2 => 'Location' } }, |
|---|
| 19 | Pitch => { Writable => 'real' , Groups => { 2 => 'Location' } }, |
|---|
| 20 | Roll => { Writable => 'real' , Groups => { 2 => 'Location' } }, |
|---|
| 21 | Heading => { Writable => 'real' , Groups => { 2 => 'Location' } }, |
|---|
| 22 | ImageCentreX => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 23 | ImageCentreY => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 24 | PrincipalPointOffset_mmXp => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 25 | PrincipalPointOffset_mmYp => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 26 | FocalLength_mmCb => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 27 | RadialDistortionK0 => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 28 | RadialDistortionK1 => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 29 | RadialDistortionK2 => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 30 | DecentringDistortionP1 => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 31 | DecentringDistortionP2 => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 32 | InPlaneDistortionB1 => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 33 | InPlaneDistortionB2 => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 34 | PixelSize_um => { Writable => 'real' , Groups => { 2 => 'Image' } }, |
|---|
| 35 | }, |
|---|
| 36 | ); |
|---|
| 37 | 1; |
|---|