Filename | String containing the name of the file. |
FileModDate | String containing the modification date of the file. |
FileSize | Integer indicating the size of the file in bytes. |
Format | String containing the file format, which should always
be 'tiff'. |
FormatVersion | String or number specifying the file format version. |
Height | Integer indicating the height of the image in pixels. |
Width | Integer indicating the width of the image in pixels. |
BitDepth | Integer indicating the number of bits per pixel. |
ColorType | String indicating the type of image: 'truecolor' for
a true-color (RGB) image, 'grayscale' for a grayscale
image, or 'indexed' for an indexed image. |
ModelType | String indicating the type of coordinate system used
to georeference the image: 'ModelTypeProjected', 'ModelTypeGeographic',
or ''. |
PCS | String indicating the projected coordinate system. |
Projection | String describing the EPSG identifier for the underlying
projection method. |
MapSys | String indicating the map system, if applicable: 'STATE_PLANE_27', 'STATE_PLANE_83', 'UTM_NORTH', 'UTM_SOUTH',
or ''. |
Zone | Double indicating the UTM or State Plane Zone number,
empty ([]) if not applicable or unknown. |
CTProjection | String containing the GeoTIFF identifier for the underlying
projection method. |
ProjParm | N-by-1 double containing projection parameter values.
The identity of each element is specified by the corresponding element
of ProjParmId. Lengths are in meters, angles in
decimal degrees. |
ProjParmId | N-by-1 cell array listing the projection parameter identifier
for each corresponding numerical element of ProjParm: Projection Parameter Identifiers
'ProjNatOriginLatGeoKey' 'ProjNatOriginLongGeoKey' 'ProjFalseEastingGeoKey' 'ProjFalseNorthingGeoKey' 'ProjFalseOriginLatGeoKey' 'ProjFalseOriginLongGeoKey' 'ProjCenterLatGeoKey' 'ProjCenterLongGeoKey' 'ProjAzimuthAngleGeoKey' 'ProjRectifiedGridAngleGeoKey' 'ProjScaleAtNatOriginGeoKey' 'ProjStdParallel1GeoKey' 'ProjStdParallel2GeoKey'
|
GCS | String indicating the geographic coordinate system. |
Datum | String indicating the projection datum type, such as 'North
American Datum 1927' or 'North American Datum 1983'. |
Ellipsoid | String indicating the ellipsoid name as defined by the ellipsoid.csv EPSG
file. |
SemiMajor | Double indicating the length of the semimajor axis of
the ellipsoid, in meters. |
SemiMinor | Double indicating the length of the semiminor axis of
the ellipsoid, in meters. |
PM | String indicating the prime meridian location, for example, 'Greenwich' or 'Paris'. |
PmLongToGreenwich | Double indicating the decimal degrees of longitude between
this prime meridian and Greenwich. Prime meridians to the west of
Greenwich are negative. |
UOMLength | String indicating the units of length used in the projected
coordinate system. |
UOMLengthInMeters | Double defining the UOMLength unit
in meters. |
UOMAngle | String indicating the angular units used for geographic
coordinates. |
UOMAngleInDegrees | Double defining the UOMAngle unit
in degrees. |
TiePoints | Structure containing the image tiepoints. The structure
contains these fields: ImagePoints — Structure
containing row and column coordinates of each image tiepoint. The ImagePoints structure
contains these fields: Fields in ImagePoints Structure
Row — Double array of size 1-by-N. Col — Double array of size 1-by-N.
WorldPoints — Structure
containing the x and y world
coordinates of the tiepoints. The WorldPoints structure
contains these fields: Fields in WorldPoints Structure
X — Double array of size 1-by-N. Y — Double array of size 1-by-N.
|
PixelScale | 3-by-1 double array that specifies the X, Y, Z pixel
scale values. |
SpatialRef | spatialref.MapRasterReference object
if the model type is 'ModelTypeProjected', or a spatialref.GeoRasterReference object
if the model type is 'ModelTypeGeographic'. SpatialRef is
empty if the spatial referencing is ambiguously defined by the GeoTIFF
file, or if the model type is 'ModelTypeGeographic' and
the geometric transformation type is 'affine'. |
RefMatrix | 3-by-2 double referencing matrix that must be unambiguously
defined by the GeoTIFF file. Otherwise it is empty ([]). |
BoundingBox | 2-by-2 double array that specifies the minimum (row 1)
and maximum (row 2) values for each dimension of the image data in
the GeoTIFF file. |
CornerCoords | Structure with six fields that contains coordinates of
the outer corners of the GeoTIFF image. Each field is a 1-by-4 double
array, or empty ([]) if unknown. The arrays contain
the coordinates of the outer corners of the corner pixels, starting
from the (1,1) corner and proceeding clockwise: Coordinates of the Outer Corners
X — Easting coordinates in the projected coordinate
system. X equals Lon (below)
if ModelType is 'ModelTypeGeographic' Y — Northing coordinates in the projected coordinate
system. Y equals Lat (below)
if ModelType is 'ModelTypeGeographic' Row — Row coordinates of
the corner. Col — Column coordinates
of the corner. Lat — Latitudes of the corner. Lon — Longitudes of the
corner.
|
GeoTIFFCodes | Structure containing raw numeric values for those GeoTIFF
fields that are encoded numerically in the file. These raw values,
converted to a string elsewhere in the info structure,
are provided here for reference. GeoTIFFCodes Fields
Model PCS GCS UOMLength UOMAngle Datum PM Ellipsoid ProjCode Projection CTProjection ProjParmId MapSys
Each is scalar, except for ProjParmId,
which is a column vector. |
GeoTIFFTags | Structure containing field names that match the GeoTIFF
tags in the file. At least one GeoTIFF tag must be present in the
file or an error is issued. The following fields may be included: GeoTIFF Tag Fields
ModelPixelScaleTag: 1-by-3 double ModelTiepointTag: 1-by-6 double ModelTransformationTag: 1-by-16 double GeoKeyDirectoryTag: scalar structure GeoAsciiParamsTag: string GeoDoubleParamsTag: 1-by-N double
The GeoKeyDirectoryTag contains
field names that match the names of the "GeoKeys". For more information
about the "GeoKeys" refer to the GeoTIFF
specification. |
ImageDescription | String describing the image. If no description is included
in the file, the field is omitted. |