Class TileMatrixSet


  • public class TileMatrixSet
    extends Object
    Tile Matrix Set object. Defines the minimum bounding box (min_x, min_y, max_x, max_y) and spatial reference system (srs_id) for all content in a tile pyramid user data table.
    Author:
    osbornb
    • Constructor Detail

      • TileMatrixSet

        public TileMatrixSet()
        Default Constructor
      • TileMatrixSet

        public TileMatrixSet​(TileMatrixSet tileMatrixSet)
        Copy Constructor
        Parameters:
        tileMatrixSet - tile matrix set to copy
        Since:
        1.3.0
    • Method Detail

      • getId

        public String getId()
      • setId

        public void setId​(String id)
      • getContents

        public Contents getContents()
      • setContents

        public void setContents​(Contents contents)
      • getTableName

        public String getTableName()
      • getSrsId

        public long getSrsId()
      • getMinX

        public double getMinX()
      • setMinX

        public void setMinX​(double minX)
      • getMinY

        public double getMinY()
      • setMinY

        public void setMinY​(double minY)
      • getMaxX

        public double getMaxX()
      • setMaxX

        public void setMaxX​(double maxX)
      • getMaxY

        public double getMaxY()
      • setMaxY

        public void setMaxY​(double maxY)
      • getBoundingBox

        public BoundingBox getBoundingBox()
        Get a bounding box
        Returns:
        bounding box
      • getBoundingBox

        public BoundingBox getBoundingBox​(Projection projection)
        Get a bounding box in the provided projection
        Parameters:
        projection - desired projection
        Returns:
        bounding box
        Since:
        3.1.0
      • setBoundingBox

        public void setBoundingBox​(BoundingBox boundingBox)
        Set a bounding box
        Parameters:
        boundingBox - bounding box
      • getProjection

        public Projection getProjection()
        Get the projection
        Returns:
        projection
        Since:
        3.1.0