Class MultilevelTileCoordinate

java.lang.Object
com.luciad.models.MultilevelTileCoordinate

public final class MultilevelTileCoordinate extends Object
Represents the coordinate of a tile in a multilevel tiled structure.

It contains the level, the column, and the row.

This class can be used to identify tiles from, for example, raster models created by:

  • Constructor Details

    • MultilevelTileCoordinate

      public MultilevelTileCoordinate(long level, long column, long row)
      Constructor for multilevel tile coordinates.

      All three coordinates are required.

  • Method Details

    • getLevel

      public long getLevel()
      The detail level of the tile.
    • getColumn

      public long getColumn()
      The column index of the tile.
    • getRow

      public long getRow()
      The row index of the tile.
    • toString

      @NotNull public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object other)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object