Class GeoKeyEntry
Object
GeoKeyEntry
- All Implemented Interfaces:
Comparable<GeoKeyEntry>
This class is a holder for a GeoKey record containing four short values as specified in the GeoTiff spec. The values
are a GeoKey ID, the TIFFTag number of the location of this data, the count of values for this GeoKey, and the offset
(or value if the location is 0).
If the Tiff Tag location is 0, then the value is a Short and is contained in the offset. Otherwise, there is one or more value in the specified external Tiff tag. The number is specified by the count field, and the offset into the record is the offset field.
- Author:
- Simone Giannecchini, GeoSolutions, Mike Nidel
-
Constructor Summary
ConstructorsConstructorDescriptionGeoKeyEntry
(int keyID, int tagLoc, int count, int offset) Constructor of aGeoKeyEntry
. -
Method Summary
Modifier and TypeMethodDescriptionint
According to GeoTIff spec:boolean
int
getCount()
int
getKeyID()
int
int
int[]
int
hashCode()
void
setCount
(int count) void
setKeyID
(int keyID) void
setTiffTagLocation
(int tagLoc) void
setValueOffset
(int valueOffset) toString()
-
Constructor Details
-
GeoKeyEntry
public GeoKeyEntry(int keyID, int tagLoc, int count, int offset) Constructor of aGeoKeyEntry
.- Parameters:
keyID
- the id of thisGeoKeyEntry
.tagLoc
- the location of this tag.
-
-
Method Details
-
equals
-
hashCode
public int hashCode() -
toString
-
getKeyID
public int getKeyID() -
getTiffTagLocation
public int getTiffTagLocation() -
getCount
public int getCount() -
getValueOffset
public int getValueOffset() -
setCount
public void setCount(int count) -
setKeyID
public void setKeyID(int keyID) -
setTiffTagLocation
public void setTiffTagLocation(int tagLoc) -
setValueOffset
public void setValueOffset(int valueOffset) -
getValues
public int[] getValues() -
compareTo
According to GeoTIff spec:In the TIFF spec it is required that TIFF tags be written out to the file in tag-ID sorted order. This is done to avoid forcing software to perform N-squared sort operations when reading and writing tags.
- Specified by:
compareTo
in interfaceComparable<GeoKeyEntry>
-