PlanetaryComputerModelFactory.TileMatrixSet Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
https://github.com/opengeospatial/2D-Tile-Matrix-Set/blob/master/schemas/tms/2.0/json/tileMatrixSet.json
A definition of a tile matrix set following the Tile Matrix Set standard.
For tileset metadata, such a description (in tileMatrixSet property) is only
required for offline use,
as an alternative to a link with a
http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme relation type.
public static Azure.Analytics.PlanetaryComputer.TileMatrixSet TileMatrixSet(string title = default, string description = default, System.Collections.Generic.IEnumerable<string> keywords = default, string id = default, string uri = default, System.Collections.Generic.IEnumerable<string> orderedAxes = default, string crs = default, Uri wellKnownScaleSet = default, Azure.Analytics.PlanetaryComputer.TileMatrixSetBoundingBox boundingBox = default, System.Collections.Generic.IEnumerable<Azure.Analytics.PlanetaryComputer.TileMatrix> tileMatrices = default);
static member TileMatrixSet : string * string * seq<string> * string * string * seq<string> * string * Uri * Azure.Analytics.PlanetaryComputer.TileMatrixSetBoundingBox * seq<Azure.Analytics.PlanetaryComputer.TileMatrix> -> Azure.Analytics.PlanetaryComputer.TileMatrixSet
Public Shared Function TileMatrixSet (Optional title As String = Nothing, Optional description As String = Nothing, Optional keywords As IEnumerable(Of String) = Nothing, Optional id As String = Nothing, Optional uri As String = Nothing, Optional orderedAxes As IEnumerable(Of String) = Nothing, Optional crs As String = Nothing, Optional wellKnownScaleSet As Uri = Nothing, Optional boundingBox As TileMatrixSetBoundingBox = Nothing, Optional tileMatrices As IEnumerable(Of TileMatrix) = Nothing) As TileMatrixSet
Parameters
- title
- String
Human-readable title of the tile matrix set.
- description
- String
Brief narrative description of this tile matrix set, normally available for display to a human
- keywords
- IEnumerable<String>
Unordered list of one or more commonly used or formalized word(s) or phrase(s) used to describe this tile matrix set
- id
- String
Unique identifier for the tile matrix set.
- uri
- String
URI reference to the official definition.
- orderedAxes
- IEnumerable<String>
Names of the coordinate axes in order.
- crs
- String
Coordinate reference system identifier.
- wellKnownScaleSet
- Uri
URL reference to a standardized scale set.
- boundingBox
- TileMatrixSetBoundingBox
Geographic extent of the tile matrix set.
- tileMatrices
- IEnumerable<TileMatrix>
Array of tile matrices at different zoom levels.
Returns
A new TileMatrixSet instance for mocking.