{"openapi":"3.1.0","info":{"title":"TiTiler","description":"A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL.\n\n---\n\n**Documentation**: <a href=\"https://developmentseed.org/titiler/\" target=\"_blank\">https://developmentseed.org/titiler/</a>\n\n**Source Code**: <a href=\"https://github.com/developmentseed/titiler\" target=\"_blank\">https://github.com/developmentseed/titiler</a>\n\n---\n    ","version":"0.18.1"},"paths":{"/cog/bounds":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Bounds","description":"Return the bounds of the COG.","operationId":"bounds_cog_bounds_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return dataset's bounds.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Bounds"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/info":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Info","description":"Return dataset's basic info.","operationId":"info_cog_info_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return dataset's basic info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/rio_tiler__models__Info"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/info.geojson":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Info Geojson","description":"Return dataset's basic info as a GeoJSON feature.","operationId":"info_geojson_cog_info_geojson_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return dataset's basic info as a GeoJSON feature.","content":{"application/geo+json":{"schema":{"$ref":"#/components/schemas/geojson_pydantic__features__Feature_Polygon_Info___1"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/statistics":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Statistics","description":"Get Dataset statistics.","operationId":"statistics_cog_statistics_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"type":"integer","default":1024,"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"categorical","in":"query","required":false,"schema":{"type":"boolean","description":"Return statistics for categorical dataset.","default":false,"title":"Categorical"},"description":"Return statistics for categorical dataset."},{"name":"c","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"anyOf":[{"type":"number"},{"type":"integer"}]}},{"type":"null"}],"title":"Pixels values for categories.","description":"List of values for which to report counts.","examples":[1,2,3]},"description":"List of values for which to report counts."},{"name":"p","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Percentile values","description":"List of percentile values (default to [2, 98]).","examples":[2,5,95,98]},"description":"List of percentile values (default to [2, 98])."},{"name":"histogram_bins","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Histogram bins.","description":"\nDefines the number of equal-width bins in the given range (10, by default).\n\nIf bins is a sequence (comma `,` delimited values), it defines a monotonically increasing array of bin edges, including the rightmost edge, allowing for non-uniform bin widths.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            "},"description":"\nDefines the number of equal-width bins in the given range (10, by default).\n\nIf bins is a sequence (comma `,` delimited values), it defines a monotonically increasing array of bin edges, including the rightmost edge, allowing for non-uniform bin widths.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            ","examples":{"simple":{"description":"Defines the number of equal-width bins","value":8},"array":{"description":"Defines custom bin edges (comma `,` delimited values)","value":"0,100,200,300"}}},{"name":"histogram_range","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Histogram range","description":"\nComma `,` delimited range of the bins.\n\nThe lower and upper range of the bins. If not provided, range is simply (a.min(), a.max()).\n\nValues outside the range are ignored. The first element of the range must be less than or equal to the second.\nrange affects the automatic bin computation as well.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            ","examples":"0,1000"},"description":"\nComma `,` delimited range of the bins.\n\nThe lower and upper range of the bins. If not provided, range is simply (a.min(), a.max()).\n\nValues outside the range are ignored. The first element of the range must be less than or equal to the second.\nrange affects the automatic bin computation as well.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            "}],"responses":{"200":{"description":"Return dataset's statistics.","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/BandStatistics"},"title":"Response Statistics Cog Statistics Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Geojson Statistics","description":"Get Statistics from a geojson feature or featureCollection.","operationId":"geojson_statistics_cog_statistics_post","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"categorical","in":"query","required":false,"schema":{"type":"boolean","description":"Return statistics for categorical dataset.","default":false,"title":"Categorical"},"description":"Return statistics for categorical dataset."},{"name":"c","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"anyOf":[{"type":"number"},{"type":"integer"}]}},{"type":"null"}],"title":"Pixels values for categories.","description":"List of values for which to report counts.","examples":[1,2,3]},"description":"List of values for which to report counts."},{"name":"p","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Percentile values","description":"List of percentile values (default to [2, 98]).","examples":[2,5,95,98]},"description":"List of percentile values (default to [2, 98])."},{"name":"histogram_bins","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Histogram bins.","description":"\nDefines the number of equal-width bins in the given range (10, by default).\n\nIf bins is a sequence (comma `,` delimited values), it defines a monotonically increasing array of bin edges, including the rightmost edge, allowing for non-uniform bin widths.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            "},"description":"\nDefines the number of equal-width bins in the given range (10, by default).\n\nIf bins is a sequence (comma `,` delimited values), it defines a monotonically increasing array of bin edges, including the rightmost edge, allowing for non-uniform bin widths.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            ","examples":{"simple":{"description":"Defines the number of equal-width bins","value":8},"array":{"description":"Defines custom bin edges (comma `,` delimited values)","value":"0,100,200,300"}}},{"name":"histogram_range","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Histogram range","description":"\nComma `,` delimited range of the bins.\n\nThe lower and upper range of the bins. If not provided, range is simply (a.min(), a.max()).\n\nValues outside the range are ignored. The first element of the range must be less than or equal to the second.\nrange affects the automatic bin computation as well.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            ","examples":"0,1000"},"description":"\nComma `,` delimited range of the bins.\n\nThe lower and upper range of the bins. If not provided, range is simply (a.min(), a.max()).\n\nValues outside the range are ignored. The first element of the range must be less than or equal to the second.\nrange affects the automatic bin computation as well.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            "}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/FeatureCollection"},{"$ref":"#/components/schemas/Feature"}],"description":"GeoJSON Feature or FeatureCollection.","title":"Geojson"}}}},"responses":{"200":{"description":"Return dataset's statistics from feature or featureCollection.","content":{"application/geo+json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/FeatureCollection_Feature_Annotated_Union_Point__MultiPoint__LineString__MultiLineString__Polygon__MultiPolygon__GeometryCollection___FieldInfo_annotation_NoneType__required_True__discriminator__type_____StatisticsInGeoJSON__"},{"$ref":"#/components/schemas/Feature_Annotated_Union_Point__MultiPoint__LineString__MultiLineString__Polygon__MultiPolygon__GeometryCollection___FieldInfo_annotation_NoneType__required_True__discriminator__type____StatisticsInGeoJSON_"}],"title":"Response Geojson Statistics Cog Statistics Post"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/tiles/{tileMatrixSetId}/{z}/{x}/{y}@{scale}x.{format}":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_cog_tiles__tileMatrixSetId___z___x___y___scale_x__format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/tiles/{tileMatrixSetId}/{z}/{x}/{y}@{scale}x":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_cog_tiles__tileMatrixSetId___z___x___y___scale_x_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/tiles/{tileMatrixSetId}/{z}/{x}/{y}.{format}":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_cog_tiles__tileMatrixSetId___z___x___y___format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/tiles/{tileMatrixSetId}/{z}/{x}/{y}":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_cog_tiles__tileMatrixSetId___z___x___y__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/tiles/{z}/{x}/{y}@{scale}x.{format}":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_cog_tiles__z___x___y___scale_x__format__get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/tiles/{z}/{x}/{y}@{scale}x":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_cog_tiles__z___x___y___scale_x_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/tiles/{z}/{x}/{y}.{format}":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_cog_tiles__z___x___y___format__get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/tiles/{z}/{x}/{y}":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_cog_tiles__z___x___y__get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/{tileMatrixSetId}/tilejson.json":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Tilejson","description":"Return TileJSON document for a dataset.","operationId":"tilejson_cog__tileMatrixSetId__tilejson_json_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return a tilejson","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TileJSON"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/tilejson.json":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Tilejson","description":"Return TileJSON document for a dataset.","operationId":"tilejson_cog_tilejson_json_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return a tilejson","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TileJSON"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/{tileMatrixSetId}/WMTSCapabilities.xml":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Wmts","description":"OGC WMTS endpoint.","operationId":"wmts_cog__tileMatrixSetId__WMTSCapabilities_xml_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"description":"Output image type. Default is png.","default":"png","title":"Tile Format"},"description":"Output image type. Default is png."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"use_epsg","in":"query","required":false,"schema":{"type":"boolean","description":"Use EPSG code, not opengis.net, for the ows:SupportedCRS in the TileMatrixSet (set to True to enable ArcMap compatability)","default":false,"title":"Use Epsg"},"description":"Use EPSG code, not opengis.net, for the ows:SupportedCRS in the TileMatrixSet (set to True to enable ArcMap compatability)"},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"application/xml":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/WMTSCapabilities.xml":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Wmts","description":"OGC WMTS endpoint.","operationId":"wmts_cog_WMTSCapabilities_xml_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"description":"Output image type. Default is png.","default":"png","title":"Tile Format"},"description":"Output image type. Default is png."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"use_epsg","in":"query","required":false,"schema":{"type":"boolean","description":"Use EPSG code, not opengis.net, for the ows:SupportedCRS in the TileMatrixSet (set to True to enable ArcMap compatability)","default":false,"title":"Use Epsg"},"description":"Use EPSG code, not opengis.net, for the ows:SupportedCRS in the TileMatrixSet (set to True to enable ArcMap compatability)"},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"application/xml":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/point/{lon},{lat}":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Point","description":"Get Point value for a dataset.","operationId":"point_cog_point__lon___lat__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"lon","in":"path","required":true,"schema":{"type":"number","description":"Longitude","title":"Lon"},"description":"Longitude"},{"name":"lat","in":"path","required":true,"schema":{"type":"number","description":"Latitude","title":"Lat"},"description":"Latitude"},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."}],"responses":{"200":{"description":"Return a value for a point","content":{"application/json":{"schema":{"$ref":"#/components/schemas/titiler__core__models__responses__Point"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/preview.{format}":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Preview","description":"Create preview of a dataset.","operationId":"preview_cog_preview__format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"type":"integer","default":1024,"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/preview":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Preview","description":"Create preview of a dataset.","operationId":"preview_cog_preview_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"type":"integer","default":1024,"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/bbox/{minx},{miny},{maxx},{maxy}/{width}x{height}.{format}":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Bbox Image","description":"Create image from a bbox.","operationId":"bbox_image_cog_bbox__minx___miny___maxx___maxy___width_x_height___format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"minx","in":"path","required":true,"schema":{"type":"number","description":"Bounding box min X","title":"Minx"},"description":"Bounding box min X"},{"name":"miny","in":"path","required":true,"schema":{"type":"number","description":"Bounding box min Y","title":"Miny"},"description":"Bounding box min Y"},{"name":"maxx","in":"path","required":true,"schema":{"type":"number","description":"Bounding box max X","title":"Maxx"},"description":"Bounding box max X"},{"name":"maxy","in":"path","required":true,"schema":{"type":"number","description":"Bounding box max Y","title":"Maxy"},"description":"Bounding box max Y"},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"height","in":"path","required":true,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"path","required":true,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/bbox/{minx},{miny},{maxx},{maxy}.{format}":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Bbox Image","description":"Create image from a bbox.","operationId":"bbox_image_cog_bbox__minx___miny___maxx___maxy___format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"minx","in":"path","required":true,"schema":{"type":"number","description":"Bounding box min X","title":"Minx"},"description":"Bounding box min X"},{"name":"miny","in":"path","required":true,"schema":{"type":"number","description":"Bounding box min Y","title":"Miny"},"description":"Bounding box min Y"},{"name":"maxx","in":"path","required":true,"schema":{"type":"number","description":"Bounding box max X","title":"Maxx"},"description":"Bounding box max X"},{"name":"maxy","in":"path","required":true,"schema":{"type":"number","description":"Bounding box max Y","title":"Maxy"},"description":"Bounding box max Y"},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/feature/{width}x{height}.{format}":{"post":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Feature Image","description":"Create image from a geojson feature.","operationId":"feature_image_cog_feature__width_x_height___format__post","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"height","in":"path","required":true,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"path","required":true,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/Feature"}],"description":"GeoJSON Feature.","title":"Geojson"}}}},"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/feature.{format}":{"post":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Feature Image","description":"Create image from a geojson feature.","operationId":"feature_image_cog_feature__format__post","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/Feature"}],"description":"GeoJSON Feature.","title":"Geojson"}}}},"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/feature":{"post":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Feature Image","description":"Create image from a geojson feature.","operationId":"feature_image_cog_feature_post","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/Feature"}],"description":"GeoJSON Feature.","title":"Geojson"}}}},"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/{tileMatrixSetId}/map":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Map Viewer","description":"Return TileJSON document for a dataset.","operationId":"map_viewer_cog__tileMatrixSetId__map_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"text/html":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/map":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Map Viewer","description":"Return TileJSON document for a dataset.","operationId":"map_viewer_cog_map_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"text/html":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/validate":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Validate","description":"Validate a COG","operationId":"validate_cog_validate_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"strict","in":"query","required":false,"schema":{"type":"boolean","description":"Treat warnings as errors","default":false,"title":"Strict"},"description":"Treat warnings as errors"},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/rio_cogeo__models__Info"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/cog/viewer":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Cog Viewer","description":"COG Viewer.","operationId":"cog_viewer_cog_viewer_get","responses":{"200":{"description":"Successful Response","content":{"text/html":{"schema":{"type":"string"}}}}},"security":[{"APIKeyQuery":[]}]}},"/cog/stac":{"get":{"tags":["Cloud Optimized GeoTIFF"],"summary":"Create Stac Item","description":"Create STAC item.","operationId":"Create_STAC_Item_cog_stac_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"datetime","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"The date and time of the assets, in UTC (e.g 2020-01-01, 2020-01-01T01:01:01).","title":"Datetime"},"description":"The date and time of the assets, in UTC (e.g 2020-01-01, 2020-01-01T01:01:01)."},{"name":"extensions","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"description":"STAC extension URL the Item implements.","title":"Extensions"},"description":"STAC extension URL the Item implements."},{"name":"collection","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"The Collection ID that this item belongs to.","title":"Collection"},"description":"The Collection ID that this item belongs to."},{"name":"collection_url","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Link to the STAC Collection.","title":"Collection Url"},"description":"Link to the STAC Collection."},{"name":"id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Id to assign to the item (default to the source basename).","title":"Id"},"description":"Id to assign to the item (default to the source basename)."},{"name":"asset_name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"asset name for the source (default to 'data').","default":"data","title":"Asset Name"},"description":"asset name for the source (default to 'data')."},{"name":"asset_roles","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"description":"list of asset's roles.","title":"Asset Roles"},"description":"list of asset's roles."},{"name":"asset_media_type","in":"query","required":false,"schema":{"anyOf":[{"enum":["image/tiff; application=geotiff; profile=cloud-optimized","application/vnd.flatgeobuf","application/geo+json","application/geopackage+sqlite3","image/tiff; application=geotiff","application/x-hdf","application/x-hdf5","text/html","image/jpeg","image/jp2","application/json","application/x-parquet","image/png","text/plain","image/tiff","application/vnd.google-earth.kml+xml","application/xml","application/pdf","application/vnd+zarr","auto"],"type":"string"},{"type":"null"}],"description":"Asset's media type","default":"auto","title":"Asset Media Type"},"description":"Asset's media type"},{"name":"asset_href","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Asset's URI (default to source's path)","title":"Asset Href"},"description":"Asset's URI (default to source's path)"},{"name":"with_proj","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"description":"Add the `projection` extension and properties.","default":true,"title":"With Proj"},"description":"Add the `projection` extension and properties."},{"name":"with_raster","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"description":"Add the `raster` extension and properties.","default":true,"title":"With Raster"},"description":"Add the `raster` extension and properties."},{"name":"with_eo","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"description":"Add the `eo` extension and properties.","default":true,"title":"With Eo"},"description":"Add the `eo` extension and properties."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"description":"Limit array size from which to get the raster statistics.","default":1024,"title":"Max Size"},"description":"Limit array size from which to get the raster statistics."},{"name":"geometry_densify","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","minimum":0},{"type":"null"}],"description":"Number of points to add to each edge to account for nonlinear edges transformation.","default":0,"title":"Geometry Densify"},"description":"Number of points to add to each edge to account for nonlinear edges transformation."},{"name":"geometry_precision","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","minimum":-1},{"type":"null"}],"description":"Round geometry coordinates to this number of decimal.","default":-1,"title":"Geometry Precision"},"description":"Round geometry coordinates to this number of decimal."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Item"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/bounds":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Bounds","description":"Return the bounds of the COG.","operationId":"bounds_stac_bounds_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return dataset's bounds.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Bounds"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/info":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Info","description":"Return dataset's basic info or the list of available assets.","operationId":"info_stac_info_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}}],"responses":{"200":{"description":"Return dataset's basic info or the list of available assets.","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/rio_tiler__models__Info"},"title":"Response Info Stac Info Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/info.geojson":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Info Geojson","description":"Return dataset's basic info as a GeoJSON feature.","operationId":"info_geojson_stac_info_geojson_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}}],"responses":{"200":{"description":"Return dataset's basic info as a GeoJSON feature.","content":{"application/geo+json":{"schema":{"$ref":"#/components/schemas/Feature_Polygon_Dict_str__Info__"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/assets":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Available Assets","description":"Return a list of supported assets.","operationId":"available_assets_stac_assets_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return a list of supported assets.","content":{"application/json":{"schema":{"type":"array","items":{"type":"string"},"title":"Response Available Assets Stac Assets Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/asset_statistics":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Asset Statistics","description":"Per Asset statistics","operationId":"asset_statistics_stac_asset_statistics_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes"},"description":"Per asset band indexes","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1;2;3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1;2;3","cog|1"]}}},{"name":"asset_expression","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band expression","description":"Per asset band expression"},"description":"Per asset band expression","examples":{"one-asset":{"description":"Return results for expression `b1*b2+b3` of asset `data`.","value":["data|b1*b2+b3"]},"multi-assets":{"description":"Return results for expressions `b1*b2+b3` for asset `data` and `b1+b3` for asset `cog`.","value":["data|b1*b2+b3","cog|b1+b3"]}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"type":"integer","default":1024,"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"categorical","in":"query","required":false,"schema":{"type":"boolean","description":"Return statistics for categorical dataset.","default":false,"title":"Categorical"},"description":"Return statistics for categorical dataset."},{"name":"c","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"anyOf":[{"type":"number"},{"type":"integer"}]}},{"type":"null"}],"title":"Pixels values for categories.","description":"List of values for which to report counts.","examples":[1,2,3]},"description":"List of values for which to report counts."},{"name":"p","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Percentile values","description":"List of percentile values (default to [2, 98]).","examples":[2,5,95,98]},"description":"List of percentile values (default to [2, 98])."},{"name":"histogram_bins","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Histogram bins.","description":"\nDefines the number of equal-width bins in the given range (10, by default).\n\nIf bins is a sequence (comma `,` delimited values), it defines a monotonically increasing array of bin edges, including the rightmost edge, allowing for non-uniform bin widths.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            "},"description":"\nDefines the number of equal-width bins in the given range (10, by default).\n\nIf bins is a sequence (comma `,` delimited values), it defines a monotonically increasing array of bin edges, including the rightmost edge, allowing for non-uniform bin widths.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            ","examples":{"simple":{"description":"Defines the number of equal-width bins","value":8},"array":{"description":"Defines custom bin edges (comma `,` delimited values)","value":"0,100,200,300"}}},{"name":"histogram_range","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Histogram range","description":"\nComma `,` delimited range of the bins.\n\nThe lower and upper range of the bins. If not provided, range is simply (a.min(), a.max()).\n\nValues outside the range are ignored. The first element of the range must be less than or equal to the second.\nrange affects the automatic bin computation as well.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            ","examples":"0,1000"},"description":"\nComma `,` delimited range of the bins.\n\nThe lower and upper range of the bins. If not provided, range is simply (a.min(), a.max()).\n\nValues outside the range are ignored. The first element of the range must be less than or equal to the second.\nrange affects the automatic bin computation as well.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            "}],"responses":{"200":{"description":"Return dataset's statistics.","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/BandStatistics"}},"title":"Response Asset Statistics Stac Asset Statistics Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/statistics":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Statistics","description":"Merged assets statistics.","operationId":"statistics_stac_statistics_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"type":"integer","default":1024,"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"categorical","in":"query","required":false,"schema":{"type":"boolean","description":"Return statistics for categorical dataset.","default":false,"title":"Categorical"},"description":"Return statistics for categorical dataset."},{"name":"c","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"anyOf":[{"type":"number"},{"type":"integer"}]}},{"type":"null"}],"title":"Pixels values for categories.","description":"List of values for which to report counts.","examples":[1,2,3]},"description":"List of values for which to report counts."},{"name":"p","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Percentile values","description":"List of percentile values (default to [2, 98]).","examples":[2,5,95,98]},"description":"List of percentile values (default to [2, 98])."},{"name":"histogram_bins","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Histogram bins.","description":"\nDefines the number of equal-width bins in the given range (10, by default).\n\nIf bins is a sequence (comma `,` delimited values), it defines a monotonically increasing array of bin edges, including the rightmost edge, allowing for non-uniform bin widths.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            "},"description":"\nDefines the number of equal-width bins in the given range (10, by default).\n\nIf bins is a sequence (comma `,` delimited values), it defines a monotonically increasing array of bin edges, including the rightmost edge, allowing for non-uniform bin widths.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            ","examples":{"simple":{"description":"Defines the number of equal-width bins","value":8},"array":{"description":"Defines custom bin edges (comma `,` delimited values)","value":"0,100,200,300"}}},{"name":"histogram_range","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Histogram range","description":"\nComma `,` delimited range of the bins.\n\nThe lower and upper range of the bins. If not provided, range is simply (a.min(), a.max()).\n\nValues outside the range are ignored. The first element of the range must be less than or equal to the second.\nrange affects the automatic bin computation as well.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            ","examples":"0,1000"},"description":"\nComma `,` delimited range of the bins.\n\nThe lower and upper range of the bins. If not provided, range is simply (a.min(), a.max()).\n\nValues outside the range are ignored. The first element of the range must be less than or equal to the second.\nrange affects the automatic bin computation as well.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            "}],"responses":{"200":{"description":"Return dataset's statistics.","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/BandStatistics"},"title":"Response Statistics Stac Statistics Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Geojson Statistics","description":"Get Statistics from a geojson feature or featureCollection.","operationId":"geojson_statistics_stac_statistics_post","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"categorical","in":"query","required":false,"schema":{"type":"boolean","description":"Return statistics for categorical dataset.","default":false,"title":"Categorical"},"description":"Return statistics for categorical dataset."},{"name":"c","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"anyOf":[{"type":"number"},{"type":"integer"}]}},{"type":"null"}],"title":"Pixels values for categories.","description":"List of values for which to report counts.","examples":[1,2,3]},"description":"List of values for which to report counts."},{"name":"p","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Percentile values","description":"List of percentile values (default to [2, 98]).","examples":[2,5,95,98]},"description":"List of percentile values (default to [2, 98])."},{"name":"histogram_bins","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Histogram bins.","description":"\nDefines the number of equal-width bins in the given range (10, by default).\n\nIf bins is a sequence (comma `,` delimited values), it defines a monotonically increasing array of bin edges, including the rightmost edge, allowing for non-uniform bin widths.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            "},"description":"\nDefines the number of equal-width bins in the given range (10, by default).\n\nIf bins is a sequence (comma `,` delimited values), it defines a monotonically increasing array of bin edges, including the rightmost edge, allowing for non-uniform bin widths.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            ","examples":{"simple":{"description":"Defines the number of equal-width bins","value":8},"array":{"description":"Defines custom bin edges (comma `,` delimited values)","value":"0,100,200,300"}}},{"name":"histogram_range","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Histogram range","description":"\nComma `,` delimited range of the bins.\n\nThe lower and upper range of the bins. If not provided, range is simply (a.min(), a.max()).\n\nValues outside the range are ignored. The first element of the range must be less than or equal to the second.\nrange affects the automatic bin computation as well.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            ","examples":"0,1000"},"description":"\nComma `,` delimited range of the bins.\n\nThe lower and upper range of the bins. If not provided, range is simply (a.min(), a.max()).\n\nValues outside the range are ignored. The first element of the range must be less than or equal to the second.\nrange affects the automatic bin computation as well.\n\nlink: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html\n            "}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/FeatureCollection"},{"$ref":"#/components/schemas/Feature"}],"description":"GeoJSON Feature or FeatureCollection.","title":"Geojson"}}}},"responses":{"200":{"description":"Return dataset's statistics from feature or featureCollection.","content":{"application/geo+json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/FeatureCollection_Feature_Annotated_Union_Point__MultiPoint__LineString__MultiLineString__Polygon__MultiPolygon__GeometryCollection___FieldInfo_annotation_NoneType__required_True__discriminator__type_____StatisticsInGeoJSON__"},{"$ref":"#/components/schemas/Feature_Annotated_Union_Point__MultiPoint__LineString__MultiLineString__Polygon__MultiPolygon__GeometryCollection___FieldInfo_annotation_NoneType__required_True__discriminator__type____StatisticsInGeoJSON_"}],"title":"Response Geojson Statistics Stac Statistics Post"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/tiles/{tileMatrixSetId}/{z}/{x}/{y}@{scale}x.{format}":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_stac_tiles__tileMatrixSetId___z___x___y___scale_x__format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/tiles/{tileMatrixSetId}/{z}/{x}/{y}@{scale}x":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_stac_tiles__tileMatrixSetId___z___x___y___scale_x_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/tiles/{tileMatrixSetId}/{z}/{x}/{y}.{format}":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_stac_tiles__tileMatrixSetId___z___x___y___format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/tiles/{tileMatrixSetId}/{z}/{x}/{y}":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_stac_tiles__tileMatrixSetId___z___x___y__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/tiles/{z}/{x}/{y}@{scale}x.{format}":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_stac_tiles__z___x___y___scale_x__format__get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/tiles/{z}/{x}/{y}@{scale}x":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_stac_tiles__z___x___y___scale_x_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/tiles/{z}/{x}/{y}.{format}":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_stac_tiles__z___x___y___format__get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/tiles/{z}/{x}/{y}":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Tile","description":"Create map tile from a dataset.","operationId":"tile_stac_tiles__z___x___y__get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/{tileMatrixSetId}/tilejson.json":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Tilejson","description":"Return TileJSON document for a dataset.","operationId":"tilejson_stac__tileMatrixSetId__tilejson_json_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return a tilejson","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TileJSON"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/tilejson.json":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Tilejson","description":"Return TileJSON document for a dataset.","operationId":"tilejson_stac_tilejson_json_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return a tilejson","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TileJSON"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/{tileMatrixSetId}/WMTSCapabilities.xml":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Wmts","description":"OGC WMTS endpoint.","operationId":"wmts_stac__tileMatrixSetId__WMTSCapabilities_xml_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"description":"Output image type. Default is png.","default":"png","title":"Tile Format"},"description":"Output image type. Default is png."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"use_epsg","in":"query","required":false,"schema":{"type":"boolean","description":"Use EPSG code, not opengis.net, for the ows:SupportedCRS in the TileMatrixSet (set to True to enable ArcMap compatability)","default":false,"title":"Use Epsg"},"description":"Use EPSG code, not opengis.net, for the ows:SupportedCRS in the TileMatrixSet (set to True to enable ArcMap compatability)"},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"application/xml":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/WMTSCapabilities.xml":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Wmts","description":"OGC WMTS endpoint.","operationId":"wmts_stac_WMTSCapabilities_xml_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"description":"Output image type. Default is png.","default":"png","title":"Tile Format"},"description":"Output image type. Default is png."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"use_epsg","in":"query","required":false,"schema":{"type":"boolean","description":"Use EPSG code, not opengis.net, for the ows:SupportedCRS in the TileMatrixSet (set to True to enable ArcMap compatability)","default":false,"title":"Use Epsg"},"description":"Use EPSG code, not opengis.net, for the ows:SupportedCRS in the TileMatrixSet (set to True to enable ArcMap compatability)"},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"application/xml":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/point/{lon},{lat}":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Point","description":"Get Point value for a dataset.","operationId":"point_stac_point__lon___lat__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"lon","in":"path","required":true,"schema":{"type":"number","description":"Longitude","title":"Lon"},"description":"Longitude"},{"name":"lat","in":"path","required":true,"schema":{"type":"number","description":"Latitude","title":"Lat"},"description":"Latitude"},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."}],"responses":{"200":{"description":"Return a value for a point","content":{"application/json":{"schema":{"$ref":"#/components/schemas/titiler__core__models__responses__Point"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/preview.{format}":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Preview","description":"Create preview of a dataset.","operationId":"preview_stac_preview__format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"type":"integer","default":1024,"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/preview":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Preview","description":"Create preview of a dataset.","operationId":"preview_stac_preview_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"type":"integer","default":1024,"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/bbox/{minx},{miny},{maxx},{maxy}/{width}x{height}.{format}":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Bbox Image","description":"Create image from a bbox.","operationId":"bbox_image_stac_bbox__minx___miny___maxx___maxy___width_x_height___format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"minx","in":"path","required":true,"schema":{"type":"number","description":"Bounding box min X","title":"Minx"},"description":"Bounding box min X"},{"name":"miny","in":"path","required":true,"schema":{"type":"number","description":"Bounding box min Y","title":"Miny"},"description":"Bounding box min Y"},{"name":"maxx","in":"path","required":true,"schema":{"type":"number","description":"Bounding box max X","title":"Maxx"},"description":"Bounding box max X"},{"name":"maxy","in":"path","required":true,"schema":{"type":"number","description":"Bounding box max Y","title":"Maxy"},"description":"Bounding box max Y"},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"height","in":"path","required":true,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"path","required":true,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/bbox/{minx},{miny},{maxx},{maxy}.{format}":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Bbox Image","description":"Create image from a bbox.","operationId":"bbox_image_stac_bbox__minx___miny___maxx___maxy___format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"minx","in":"path","required":true,"schema":{"type":"number","description":"Bounding box min X","title":"Minx"},"description":"Bounding box min X"},{"name":"miny","in":"path","required":true,"schema":{"type":"number","description":"Bounding box min Y","title":"Miny"},"description":"Bounding box min Y"},{"name":"maxx","in":"path","required":true,"schema":{"type":"number","description":"Bounding box max X","title":"Maxx"},"description":"Bounding box max X"},{"name":"maxy","in":"path","required":true,"schema":{"type":"number","description":"Bounding box max Y","title":"Maxy"},"description":"Bounding box max Y"},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/feature/{width}x{height}.{format}":{"post":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Feature Image","description":"Create image from a geojson feature.","operationId":"feature_image_stac_feature__width_x_height___format__post","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"height","in":"path","required":true,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"path","required":true,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/Feature"}],"description":"GeoJSON Feature.","title":"Geojson"}}}},"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/feature.{format}":{"post":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Feature Image","description":"Create image from a geojson feature.","operationId":"feature_image_stac_feature__format__post","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/Feature"}],"description":"GeoJSON Feature.","title":"Geojson"}}}},"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/feature":{"post":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Feature Image","description":"Create image from a geojson feature.","operationId":"feature_image_stac_feature_post","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"dst_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Output Coordinate Reference System.","title":"Dst Crs"},"description":"Output Coordinate Reference System."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"max_size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Size"}},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Height"}},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Width"}},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/Feature"}],"description":"GeoJSON Feature.","title":"Geojson"}}}},"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/{tileMatrixSetId}/map":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Map Viewer","description":"Return TileJSON document for a dataset.","operationId":"map_viewer_stac__tileMatrixSetId__map_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"text/html":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/map":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Map Viewer","description":"Return TileJSON document for a dataset.","operationId":"map_viewer_stac_map_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"assets","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Asset names","description":"Asset's names."},"description":"Asset's names.","examples":{"one-asset":{"description":"Return results for asset `data`.","value":["data"]},"multi-assets":{"description":"Return results for assets `data` and `cog`.","value":["data","cog"]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"Band math expression between assets"},"description":"Band math expression between assets","examples":{"simple":{"description":"Return results of expression between assets.","value":"asset1_b1 + asset2_b1 / asset3_b1"}}},{"name":"asset_bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Per asset band indexes","description":"Per asset band indexes (coma separated indexes)"},"description":"Per asset band indexes (coma separated indexes)","examples":{"one-asset":{"description":"Return indexes 1,2,3 of asset `data`.","value":["data|1,2,3"]},"multi-assets":{"description":"Return indexes 1,2,3 of asset `data` and indexes 1 of asset `cog`","value":["data|1,2,3","cog|1"]}}},{"name":"asset_as_band","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Consider asset as a 1 band dataset","description":"Asset as Band"},"description":"Asset as Band"},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"text/html":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/stac/viewer":{"get":{"tags":["SpatioTemporal Asset Catalog"],"summary":"Stac Viewer","description":"STAC Viewer.","operationId":"stac_viewer_stac_viewer_get","responses":{"200":{"description":"Successful Response","content":{"text/html":{"schema":{"type":"string"}}}}},"security":[{"APIKeyQuery":[]}]}},"/mosaicjson/":{"get":{"tags":["MosaicJSON"],"summary":"Read","description":"Read a MosaicJSON","operationId":"read_mosaicjson__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return MosaicJSON definition","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MosaicJSON-Output"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/bounds":{"get":{"tags":["MosaicJSON"],"summary":"Bounds","description":"Return the bounds of the MosaicJSON.","operationId":"bounds_mosaicjson_bounds_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return the bounds of the MosaicJSON","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Bounds"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/info":{"get":{"tags":["MosaicJSON"],"summary":"Info","description":"Return basic info.","operationId":"info_mosaicjson_info_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return info about the MosaicJSON","content":{"application/json":{"schema":{"$ref":"#/components/schemas/cogeo_mosaic__models__Info"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/info.geojson":{"get":{"tags":["MosaicJSON"],"summary":"Info Geojson","description":"Return mosaic's basic info as a GeoJSON feature.","operationId":"info_geojson_mosaicjson_info_geojson_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return mosaic's basic info as a GeoJSON feature.","content":{"application/geo+json":{"schema":{"$ref":"#/components/schemas/geojson_pydantic__features__Feature_Polygon_Info___2"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/tiles/{tileMatrixSetId}/{z}/{x}/{y}@{scale}x.{format}":{"get":{"tags":["MosaicJSON"],"summary":"Tile","description":"Create map tile from a COG.","operationId":"tile_mosaicjson_tiles__tileMatrixSetId___z___x___y___scale_x__format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/tiles/{tileMatrixSetId}/{z}/{x}/{y}@{scale}x":{"get":{"tags":["MosaicJSON"],"summary":"Tile","description":"Create map tile from a COG.","operationId":"tile_mosaicjson_tiles__tileMatrixSetId___z___x___y___scale_x_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/tiles/{tileMatrixSetId}/{z}/{x}/{y}.{format}":{"get":{"tags":["MosaicJSON"],"summary":"Tile","description":"Create map tile from a COG.","operationId":"tile_mosaicjson_tiles__tileMatrixSetId___z___x___y___format__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/tiles/{tileMatrixSetId}/{z}/{x}/{y}":{"get":{"tags":["MosaicJSON"],"summary":"Tile","description":"Create map tile from a COG.","operationId":"tile_mosaicjson_tiles__tileMatrixSetId___z___x___y__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/tiles/{z}/{x}/{y}@{scale}x.{format}":{"get":{"tags":["MosaicJSON"],"summary":"Tile","description":"Create map tile from a COG.","operationId":"tile_mosaicjson_tiles__z___x___y___scale_x__format__get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/tiles/{z}/{x}/{y}@{scale}x":{"get":{"tags":["MosaicJSON"],"summary":"Tile","description":"Create map tile from a COG.","operationId":"tile_mosaicjson_tiles__z___x___y___scale_x_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"scale","in":"path","required":true,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"title":"Scale"}},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/tiles/{z}/{x}/{y}.{format}":{"get":{"tags":["MosaicJSON"],"summary":"Tile","description":"Create map tile from a COG.","operationId":"tile_mosaicjson_tiles__z___x___y___format__get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"format","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ImageType"}},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/tiles/{z}/{x}/{y}":{"get":{"tags":["MosaicJSON"],"summary":"Tile","description":"Create map tile from a COG.","operationId":"tile_mosaicjson_tiles__z___x___y__get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","maximum":4,"exclusiveMinimum":0,"default":1,"title":"Scale"}},{"name":"format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"title":"Format"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return an image.","content":{"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/{tileMatrixSetId}/tilejson.json":{"get":{"tags":["MosaicJSON"],"summary":"Tilejson","description":"Return TileJSON document for a COG.","operationId":"tilejson_mosaicjson__tileMatrixSetId__tilejson_json_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return a tilejson","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TileJSON"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/tilejson.json":{"get":{"tags":["MosaicJSON"],"summary":"Tilejson","description":"Return TileJSON document for a COG.","operationId":"tilejson_mosaicjson_tilejson_json_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Return a tilejson","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TileJSON"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/{tileMatrixSetId}/WMTSCapabilities.xml":{"get":{"tags":["MosaicJSON"],"summary":"Wmts","description":"OGC WMTS endpoint.","operationId":"wmts_mosaicjson__tileMatrixSetId__WMTSCapabilities_xml_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"description":"Output image type. Default is png.","default":"png","title":"Tile Format"},"description":"Output image type. Default is png."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"application/xml":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/WMTSCapabilities.xml":{"get":{"tags":["MosaicJSON"],"summary":"Wmts","description":"OGC WMTS endpoint.","operationId":"wmts_mosaicjson_WMTSCapabilities_xml_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ImageType"}],"description":"Output image type. Default is png.","default":"png","title":"Tile Format"},"description":"Output image type. Default is png."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"application/xml":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/point/{lon},{lat}":{"get":{"tags":["MosaicJSON"],"summary":"Point","description":"Get Point value for a Mosaic.","operationId":"point_mosaicjson_point__lon___lat__get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"lon","in":"path","required":true,"schema":{"type":"number","description":"Longitude","title":"Lon"},"description":"Longitude"},{"name":"lat","in":"path","required":true,"schema":{"type":"number","description":"Latitude","title":"Lat"},"description":"Latitude"},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."}],"responses":{"200":{"description":"Return a value for a point","content":{"application/json":{"schema":{"$ref":"#/components/schemas/titiler__mosaic__models__responses__Point"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/validate":{"post":{"tags":["MosaicJSON"],"summary":"Validate","description":"Validate a MosaicJSON","operationId":"validate_mosaicjson_validate_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MosaicJSON-Input"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"APIKeyQuery":[]}]}},"/mosaicjson/{minx},{miny},{maxx},{maxy}/assets":{"get":{"tags":["MosaicJSON"],"summary":"Assets For Bbox","description":"Return a list of assets which overlap a bounding box","operationId":"assets_for_bbox_mosaicjson__minx___miny___maxx___maxy__assets_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"minx","in":"path","required":true,"schema":{"type":"number","description":"Bounding box min X","title":"Minx"},"description":"Bounding box min X"},{"name":"miny","in":"path","required":true,"schema":{"type":"number","description":"Bounding box min Y","title":"Miny"},"description":"Bounding box min Y"},{"name":"maxx","in":"path","required":true,"schema":{"type":"number","description":"Bounding box max X","title":"Maxx"},"description":"Bounding box max X"},{"name":"maxy","in":"path","required":true,"schema":{"type":"number","description":"Bounding box max Y","title":"Maxy"},"description":"Bounding box max Y"},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."}],"responses":{"200":{"description":"Return list of COGs in bounding box","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/{lon},{lat}/assets":{"get":{"tags":["MosaicJSON"],"summary":"Assets For Lon Lat","description":"Return a list of assets which overlap a point","operationId":"assets_for_lon_lat_mosaicjson__lon___lat__assets_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"lon","in":"path","required":true,"schema":{"type":"number","description":"Longitude","title":"Lon"},"description":"Longitude"},{"name":"lat","in":"path","required":true,"schema":{"type":"number","description":"Latitude","title":"Lat"},"description":"Latitude"},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"coord_crs","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`.","title":"Coord Crs"},"description":"Coordinate Reference System of the input coords. Default to `epsg:4326`."}],"responses":{"200":{"description":"Return list of COGs","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/{tileMatrixSetId}/{z}/{x}/{y}/assets":{"get":{"tags":["MosaicJSON"],"summary":"Assets For Tile","description":"Return a list of assets which overlap a given tile","operationId":"assets_for_tile_mosaicjson__tileMatrixSetId___z___x___y__assets_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return list of COGs","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/{z}/{x}/{y}/assets":{"get":{"tags":["MosaicJSON"],"summary":"Assets For Tile","description":"Return a list of assets which overlap a given tile","operationId":"assets_for_tile_mosaicjson__z___x___y__assets_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"z","in":"path","required":true,"schema":{"type":"integer","description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile.","title":"Z"},"description":"Identifier (Z) selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile."},{"name":"x","in":"path","required":true,"schema":{"type":"integer","description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix.","title":"X"},"description":"Column (X) index of the tile on the selected TileMatrix. It cannot exceed the MatrixHeight-1 for the selected TileMatrix."},{"name":"y","in":"path","required":true,"schema":{"type":"integer","description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix.","title":"Y"},"description":"Row (Y) index of the tile on the selected TileMatrix. It cannot exceed the MatrixWidth-1 for the selected TileMatrix."},{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"}],"responses":{"200":{"description":"Return list of COGs","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/{tileMatrixSetId}/map":{"get":{"tags":["MosaicJSON"],"summary":"Map Viewer","description":"Return TileJSON document for a dataset.","operationId":"map_viewer_mosaicjson__tileMatrixSetId__map_get","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"text/html":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mosaicjson/map":{"get":{"tags":["MosaicJSON"],"summary":"Map Viewer","description":"Return TileJSON document for a dataset.","operationId":"map_viewer_mosaicjson_map_get","deprecated":true,"security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"query","required":false,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","default":"WebMercatorQuad","title":"Tilematrixsetid"}},{"name":"tile_format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg).","title":"Tile Format"},"description":"Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."},{"name":"tile_scale","in":"query","required":false,"schema":{"type":"integer","exclusiveMaximum":4,"exclusiveMinimum":0,"description":"Tile size scale. 1=256x256, 2=512x512...","default":1,"title":"Tile Scale"},"description":"Tile size scale. 1=256x256, 2=512x512..."},{"name":"minzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default minzoom.","title":"Minzoom"},"description":"Overwrite default minzoom."},{"name":"maxzoom","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Overwrite default maxzoom.","title":"Maxzoom"},"description":"Overwrite default maxzoom."},{"name":"url","in":"query","required":true,"schema":{"type":"string","description":"Dataset URL","title":"Url"},"description":"Dataset URL"},{"name":"bidx","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"integer"}},{"type":"null"}],"title":"Band indexes","description":"Dataset band indexes"},"description":"Dataset band indexes","examples":{"one-band":{"value":[1]},"multi-bands":{"value":[1,2,3]}}},{"name":"expression","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Band Math expression","description":"rio-tiler's band math expression"},"description":"rio-tiler's band math expression","examples":{"simple":{"description":"Simple band math.","value":"b1/b2"},"multi-bands":{"description":"Semicolon (;) delimited expressions (band1: b1/b2, band2: b2+b3).","value":"b1/b2;b2+b3"}}},{"name":"nodata","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"null"}],"title":"Nodata value","description":"Overwrite internal Nodata value"},"description":"Overwrite internal Nodata value"},{"name":"unscale","in":"query","required":false,"schema":{"type":"boolean","title":"Apply internal Scale/Offset","description":"Apply internal Scale/Offset. Defaults to `False`.","default":false},"description":"Apply internal Scale/Offset. Defaults to `False`."},{"name":"resampling","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","gauss","rms"],"type":"string","description":"RasterIO resampling algorithm. Defaults to `nearest`.","default":"nearest","title":"Resampling"},"description":"RasterIO resampling algorithm. Defaults to `nearest`."},{"name":"reproject","in":"query","required":false,"schema":{"enum":["nearest","bilinear","cubic","cubic_spline","lanczos","average","mode","sum","rms"],"type":"string","description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`.","default":"nearest","title":"Reproject"},"description":"WarpKernel resampling algorithm (only used when doing re-projection). Defaults to `nearest`."},{"name":"pixel_selection","in":"query","required":false,"schema":{"enum":["first","highest","lowest","mean","median","stdev","lastbandlow","lastbandhight","count"],"type":"string","description":"Pixel selection method.","default":"first","title":"Pixel Selection"},"description":"Pixel selection method."},{"name":"buffer","in":"query","required":false,"schema":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"null"}],"title":"Tile buffer.","description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},"description":"Buffer on each side of the given tile. It must be a multiple of `0.5`. Output **tilesize** will be expanded to `tilesize + 2 * buffer` (e.g 0.5 = 257x257, 1.0 = 258x258)."},{"name":"padding","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","exclusiveMinimum":0},{"type":"null"}],"title":"Tile padding.","description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},"description":"Padding to apply to each tile edge. Helps reduce resampling artefacts along edges. Defaults to `0`."},{"name":"algorithm","in":"query","required":false,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithm"},"description":"Algorithm name"},{"name":"algorithm_params","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Algorithm parameter","title":"Algorithm Params"},"description":"Algorithm parameter"},{"name":"rescale","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Min/Max data Rescaling","description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands.","examples":["0,2000","0,1000","0,10000"]},"description":"comma (',') delimited Min,Max range. Can set multiple time for multiple bands."},{"name":"color_formula","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Color Formula","description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},"description":"rio-color formula (info: https://github.com/mapbox/rio-color)"},{"name":"colormap_name","in":"query","required":false,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"Colormap name","title":"Colormap Name"},"description":"Colormap name"},{"name":"colormap","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"JSON encoded custom Colormap","title":"Colormap"},"description":"JSON encoded custom Colormap"},{"name":"return_mask","in":"query","required":false,"schema":{"type":"boolean","description":"Add mask to the output data. Defaults to `True`","default":true,"title":"Return Mask"},"description":"Add mask to the output data. Defaults to `True`"}],"responses":{"200":{"description":"Successful Response","content":{"text/html":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/tileMatrixSets":{"get":{"tags":["Tiling Schemes"],"summary":"Retrieve the list of available tiling schemes (tile matrix sets).","description":"OGC Specification: http://docs.opengeospatial.org/per/19-069.html#_tilematrixsets","operationId":"getTileMatrixSetsList","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TileMatrixSetList"}}}}},"security":[{"APIKeyQuery":[]}]}},"/tileMatrixSets/{tileMatrixSetId}":{"get":{"tags":["Tiling Schemes"],"summary":"Retrieve the definition of the specified tiling scheme (tile matrix set).","description":"OGC Specification: http://docs.opengeospatial.org/per/19-069.html#_tilematrixset","operationId":"getTileMatrixSet","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"tileMatrixSetId","in":"path","required":true,"schema":{"enum":["CDB1GlobalGrid","CanadianNAD83_LCC","EuropeanETRS89_LAEAQuad","GNOSISGlobalGrid","LINZAntarticaMapTilegrid","NZTM2000Quad","UPSAntarcticWGS84Quad","UPSArcticWGS84Quad","UTM31WGS84Quad","WGS1984Quad","WebMercatorQuad","WorldCRS84Quad","WorldMercatorWGS84Quad"],"type":"string","description":"Identifier for a supported TileMatrixSet.","title":"Tilematrixsetid"},"description":"Identifier for a supported TileMatrixSet."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TileMatrixSet-Output"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/algorithms":{"get":{"tags":["Algorithms"],"summary":"Retrieve the list of available Algorithms.","description":"Retrieve the list of available Algorithms.","operationId":"getAlgorithms","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"additionalProperties":{"$ref":"#/components/schemas/AlgorithmMetadata"},"type":"object","title":"Response Getalgorithms"}}}}},"security":[{"APIKeyQuery":[]}]}},"/algorithms/{algorithmId}":{"get":{"tags":["Algorithms"],"summary":"Retrieve the metadata of the specified algorithm.","description":"Retrieve the metadata of the specified algorithm.","operationId":"getAlgorithm","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"algorithmId","in":"path","required":true,"schema":{"enum":["hillshade","contours","normalizedIndex","terrarium","terrainrgb"],"type":"string","description":"Algorithm name","title":"Algorithmid"},"description":"Algorithm name"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AlgorithmMetadata"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/colorMaps":{"get":{"tags":["ColorMaps"],"summary":"Retrieve the list of available colormaps.","description":"Retrieve the list of available colormaps.","operationId":"getColorMaps","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ColorMapsList"}}}}},"security":[{"APIKeyQuery":[]}]}},"/colorMaps/{colorMapId}":{"get":{"tags":["ColorMaps"],"summary":"Retrieve the colorMap metadata or image.","description":"Retrieve the metadata of the specified colormap.","operationId":"getColorMap","security":[{"APIKeyQuery":[]}],"parameters":[{"name":"colorMapId","in":"path","required":true,"schema":{"enum":["diff","oxy","bone_r","hsv_r","tab20c_r","seismic","gnuplot2","summer_r","ice","ocean","pink","plasma","coolwarm_r","orrd","bupu","ylorrd_r","solar","gist_rainbow_r","blues_r","speed_r","brbg","autumn","pubu_r","pastel2_r","bwr_r","ylgnbu_r","phase_r","purd","thermal_r","set3_r","pastel1","viridis_r","gist_earth","gist_heat","gist_stern_r","tarn_r","accent","oxy_r","rainbow","reds","haline_r","terrain","hsv","rdbu","cool_r","cubehelix","dense_r","ice_r","inferno","nipy_spectral_r","twilight_r","tempo","deep_r","magma","amp_r","flag","gist_ncar_r","ylorrd","jet_r","coolwarm","purples_r","cubehelix_r","gist_gray","bupu_r","matter","tab10_r","gist_earth_r","algae","cmrmap","brg","paired_r","piyg","tab20","hot","ylgn","turbo_r","dark2_r","bone","terrain_r","flag_r","dense","prgn","cfastie","inferno_r","paired","ylgnbu","gnuplot","purd_r","pubugn","winter_r","thermal","binary","oranges","gnuplot_r","pubu","tempo_r","binary_r","spectral_r","orrd_r","greys_r","puor","greens","ylorbr","balance_r","accent_r","spectral","rdylbu","rdpu","tab20c","turbid","cividis","tab20b","rdylgn_r","oranges_r","amp","spring_r","ylorbr_r","rdpu_r","rdylgn","algae_r","afmhot","balance","rdbu_r","nipy_spectral","gist_rainbow","rainbow_r","deep","set2","haline","ocean_r","jet","rdgy","plasma_r","prism_r","delta_r","tab10","curl_r","pastel1_r","cividis_r","rain","gnbu","gnuplot2_r","turbo","bwr","set2_r","diff_r","set1_r","twilight_shifted_r","curl","gist_yarg","greens_r","gist_stern","twilight_shifted","autumn_r","bugn","summer","gnbu_r","twilight","topo","cool","turbid_r","wistia_r","bugn_r","viridis","purples","gist_ncar","reds_r","magma_r","gist_heat_r","wistia","rplumbo","speed","blues","pink_r","ylgn_r","spring","puor_r","matter_r","delta","prgn_r","copper_r","hot_r","afmhot_r","brg_r","rdgy_r","phase","seismic_r","gray","piyg_r","greys","tab20_r","schwarzwald","gist_gray_r","brbg_r","prism","topo_r","dark2","winter","set1","gist_yarg_r","tarn","gray_r","pubugn_r","pastel2","tab20b_r","rain_r","solar_r","set3","rdylbu_r","cmrmap_r","copper"],"type":"string","description":"ColorMap name","title":"Colormapid"},"description":"ColorMap name"},{"name":"format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/ImageType"},{"type":"null"}],"description":"Return colorMap as Image.","title":"Format"},"description":"Return colorMap as Image."},{"name":"orientation","in":"query","required":false,"schema":{"anyOf":[{"enum":["vertical","horizontal"],"type":"string"},{"type":"null"}],"description":"Image Orientation.","title":"Orientation"},"description":"Image Orientation."},{"name":"height","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Image Height (default to 20px for horizontal or 256px for vertical).","title":"Height"},"description":"Image Height (default to 20px for horizontal or 256px for vertical)."},{"name":"width","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Image Width (default to 256px for horizontal or 20px for vertical).","title":"Width"},"description":"Image Width (default to 256px for horizontal or 20px for vertical)."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"anyOf":[{"type":"object","additionalProperties":{"type":"array","minItems":4,"prefixItems":[{"type":"integer"},{"type":"integer"},{"type":"integer"},{"type":"integer"}],"maxItems":4}},{"type":"array","items":{"type":"array","minItems":2,"prefixItems":[{"type":"array","minItems":2,"prefixItems":[{"anyOf":[{"type":"number"},{"type":"integer"}]},{"anyOf":[{"type":"number"},{"type":"integer"}]}],"maxItems":2},{"type":"array","minItems":4,"prefixItems":[{"type":"integer"},{"type":"integer"},{"type":"integer"},{"type":"integer"}],"maxItems":4}],"maxItems":2}}],"title":"Response Getcolormap"}},"image/png":{},"image/jpeg":{},"image/jpg":{},"image/webp":{},"image/jp2":{},"image/tiff; application=geotiff":{},"application/x-binary":{}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/healthz":{"get":{"tags":["Health Check"],"summary":"Health Check.","description":"Health Check.","operationId":"healthCheck","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}},"security":[{"APIKeyQuery":[]}]}}},"components":{"schemas":{"AlgorithmMetadata":{"properties":{"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"inputs":{"type":"object","title":"Inputs"},"outputs":{"type":"object","title":"Outputs"},"parameters":{"type":"object","title":"Parameters"}},"type":"object","required":["title","description","inputs","outputs","parameters"],"title":"AlgorithmMetadata","description":"Algorithm metadata."},"BandMetadata":{"properties":{"Description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"ColorInterp":{"type":"string","title":"Colorinterp"},"Offset":{"type":"number","title":"Offset"},"Scale":{"type":"number","title":"Scale"},"Metadata":{"anyOf":[{"type":"object"},{"type":"null"}],"title":"Metadata"}},"type":"object","required":["Description","ColorInterp","Offset","Scale","Metadata"],"title":"BandMetadata","description":"Band metadata."},"BandStatistics":{"properties":{"min":{"type":"number","title":"Min"},"max":{"type":"number","title":"Max"},"mean":{"type":"number","title":"Mean"},"count":{"type":"number","title":"Count"},"sum":{"type":"number","title":"Sum"},"std":{"type":"number","title":"Std"},"median":{"type":"number","title":"Median"},"majority":{"type":"number","title":"Majority"},"minority":{"type":"number","title":"Minority"},"unique":{"type":"number","title":"Unique"},"histogram":{"items":{"items":{"anyOf":[{"type":"number"},{"type":"integer"}]},"type":"array"},"type":"array","title":"Histogram"},"valid_percent":{"type":"number","title":"Valid Percent"},"masked_pixels":{"type":"number","title":"Masked Pixels"},"valid_pixels":{"type":"number","title":"Valid Pixels"}},"additionalProperties":true,"type":"object","required":["min","max","mean","count","sum","std","median","majority","minority","unique","histogram","valid_percent","masked_pixels","valid_pixels"],"title":"BandStatistics","description":"Band statistics"},"BaseModel":{"properties":{},"type":"object","title":"BaseModel","description":"Usage docs: https://docs.pydantic.dev/2.2/usage/models/\n\nA base class for creating Pydantic models.\n\nAttributes:\n    __class_vars__: The names of classvars defined on the model.\n    __private_attributes__: Metadata about the private attributes of the model.\n    __signature__: The signature for instantiating the model.\n\n    __pydantic_complete__: Whether model building is completed, or if there are still undefined fields.\n    __pydantic_core_schema__: The pydantic-core schema used to build the SchemaValidator and SchemaSerializer.\n    __pydantic_custom_init__: Whether the model has a custom `__init__` function.\n    __pydantic_decorators__: Metadata containing the decorators defined on the model.\n        This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1.\n    __pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to\n        __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.\n    __pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models.\n    __pydantic_post_init__: The name of the post-init method for the model, if defined.\n    __pydantic_root_model__: Whether the model is a `RootModel`.\n    __pydantic_serializer__: The pydantic-core SchemaSerializer used to dump instances of the model.\n    __pydantic_validator__: The pydantic-core SchemaValidator used to validate instances of the model.\n\n    __pydantic_extra__: An instance attribute with the values of extra fields from validation when\n        `model_config['extra'] == 'allow'`.\n    __pydantic_fields_set__: An instance attribute with the names of fields explicitly specified during validation.\n    __pydantic_private__: Instance attribute with the values of private attributes set on the model instance."},"BoundingBox":{"prefixItems":[{"title":"Left"},{"title":"Bottom"},{"title":"Right"},{"title":"Top"}],"type":"array","maxItems":4,"minItems":4},"Bounds":{"properties":{"bounds":{"$ref":"#/components/schemas/BoundingBox"}},"type":"object","required":["bounds"],"title":"Bounds","description":"Dataset Bounding box"},"CRS":{"anyOf":[{"type":"string"},{"$ref":"#/components/schemas/CRSUri"},{"$ref":"#/components/schemas/CRSWKT"},{"$ref":"#/components/schemas/CRSRef"}],"title":"CRS","description":"CRS model.\n\nRef: https://github.com/opengeospatial/ogcapi-tiles/blob/master/openapi/schemas/common-geodata/crs.yaml\n\nCode generated using https://github.com/koxudaxi/datamodel-code-generator/"},"CRSRef":{"properties":{"referenceSystem":{"type":"object","title":"Referencesystem","description":"A reference system data structure as defined in the MD_ReferenceSystem of the ISO 19115"}},"type":"object","required":["referenceSystem"],"title":"CRSRef","description":"CRS from referenceSystem."},"CRSUri":{"properties":{"uri":{"type":"string","minLength":1,"format":"uri","title":"Uri","description":"Reference to one coordinate reference system (CRS) as URI","exemples":["http://www.opengis.net/def/crs/EPSG/0/3978","urn:ogc:def:crs:EPSG::2193"]}},"type":"object","required":["uri"],"title":"CRSUri","description":"Coordinate Reference System (CRS) from URI."},"CRSWKT":{"properties":{"wkt":{"type":"object","title":"Wkt","description":"An object defining the CRS using the JSON encoding for Well-known text representation of coordinate reference systems 2.0"}},"type":"object","required":["wkt"],"title":"CRSWKT","description":"Coordinate Reference System (CRS) from WKT encoded as PROJJSON Object."},"ColorMapsList":{"properties":{"colorMaps":{"items":{"type":"string"},"type":"array","title":"Colormaps"},"links":{"items":{"$ref":"#/components/schemas/Link"},"type":"array","title":"Links"}},"type":"object","required":["colorMaps","links"],"title":"ColorMapsList","description":"Model for colormap list."},"Feature":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"Feature","title":"Type"},"geometry":{"anyOf":[{"oneOf":[{"$ref":"#/components/schemas/Point-Input"},{"$ref":"#/components/schemas/MultiPoint-Input"},{"$ref":"#/components/schemas/LineString-Input"},{"$ref":"#/components/schemas/MultiLineString-Input"},{"$ref":"#/components/schemas/Polygon-Input"},{"$ref":"#/components/schemas/MultiPolygon-Input"},{"$ref":"#/components/schemas/GeometryCollection-Input"}],"discriminator":{"propertyName":"type","mapping":{"GeometryCollection":"#/components/schemas/GeometryCollection-Input","LineString":"#/components/schemas/LineString-Input","MultiLineString":"#/components/schemas/MultiLineString-Input","MultiPoint":"#/components/schemas/MultiPoint-Input","MultiPolygon":"#/components/schemas/MultiPolygon-Input","Point":"#/components/schemas/Point-Input","Polygon":"#/components/schemas/Polygon-Input"}}},{"type":"null"}],"title":"Geometry"},"properties":{"anyOf":[{"type":"object"},{"$ref":"#/components/schemas/BaseModel"},{"type":"null"}],"title":"Properties"},"id":{"anyOf":[{"type":"integer"},{"type":"string"},{"type":"null"}],"title":"Id"}},"type":"object","required":["type","geometry","properties"],"title":"Feature","description":"Feature Model"},"FeatureCollection":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"FeatureCollection","title":"Type"},"features":{"items":{"$ref":"#/components/schemas/Feature"},"type":"array","title":"Features"}},"type":"object","required":["type","features"],"title":"FeatureCollection","description":"FeatureCollection Model"},"FeatureCollection_Feature_Annotated_Union_Point__MultiPoint__LineString__MultiLineString__Polygon__MultiPolygon__GeometryCollection___FieldInfo_annotation_NoneType__required_True__discriminator__type_____StatisticsInGeoJSON__":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"FeatureCollection","title":"Type"},"features":{"items":{"$ref":"#/components/schemas/Feature_Annotated_Union_Point__MultiPoint__LineString__MultiLineString__Polygon__MultiPolygon__GeometryCollection___FieldInfo_annotation_NoneType__required_True__discriminator__type____StatisticsInGeoJSON_"},"type":"array","title":"Features"}},"type":"object","required":["bbox","type","features"],"title":"FeatureCollection[Feature[Annotated[Union[Point, MultiPoint, LineString, MultiLineString, Polygon, MultiPolygon, GeometryCollection], FieldInfo(annotation=NoneType, required=True, discriminator='type')], StatisticsInGeoJSON]]"},"Feature_Annotated_Union_Point__MultiPoint__LineString__MultiLineString__Polygon__MultiPolygon__GeometryCollection___FieldInfo_annotation_NoneType__required_True__discriminator__type____StatisticsInGeoJSON_":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"Feature","title":"Type"},"geometry":{"anyOf":[{"oneOf":[{"$ref":"#/components/schemas/geojson_pydantic__geometries__Point-Output"},{"$ref":"#/components/schemas/MultiPoint-Output"},{"$ref":"#/components/schemas/LineString-Output"},{"$ref":"#/components/schemas/MultiLineString-Output"},{"$ref":"#/components/schemas/Polygon-Output"},{"$ref":"#/components/schemas/MultiPolygon-Output"},{"$ref":"#/components/schemas/GeometryCollection-Output"}],"discriminator":{"propertyName":"type","mapping":{"GeometryCollection":"#/components/schemas/GeometryCollection-Output","LineString":"#/components/schemas/LineString-Output","MultiLineString":"#/components/schemas/MultiLineString-Output","MultiPoint":"#/components/schemas/MultiPoint-Output","MultiPolygon":"#/components/schemas/MultiPolygon-Output","Point":"#/components/schemas/geojson_pydantic__geometries__Point-Output","Polygon":"#/components/schemas/Polygon-Output"}}},{"type":"null"}],"title":"Geometry"},"properties":{"anyOf":[{"$ref":"#/components/schemas/StatisticsInGeoJSON"},{"type":"null"}]},"id":{"anyOf":[{"type":"integer"},{"type":"string"},{"type":"null"}],"title":"Id"}},"type":"object","required":["bbox","type","geometry","properties","id"],"title":"Feature[Annotated[Union[Point, MultiPoint, LineString, MultiLineString, Polygon, MultiPolygon, GeometryCollection], FieldInfo(annotation=NoneType, required=True, discriminator='type')], StatisticsInGeoJSON]"},"Feature_Polygon_Dict_str__Info__":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"Feature","title":"Type"},"geometry":{"anyOf":[{"$ref":"#/components/schemas/Polygon-Output"},{"type":"null"}]},"properties":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/rio_tiler__models__Info"},"type":"object"},{"type":"null"}],"title":"Properties"},"id":{"anyOf":[{"type":"integer"},{"type":"string"},{"type":"null"}],"title":"Id"}},"type":"object","required":["bbox","type","geometry","properties","id"],"title":"Feature[Polygon, Dict[str, Info]]"},"Geo":{"properties":{"CRS":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Crs"},"BoundingBox":{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4,"title":"Boundingbox"},"Origin":{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2,"title":"Origin"},"Resolution":{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2,"title":"Resolution"},"MinZoom":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Minzoom"},"MaxZoom":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Maxzoom"}},"type":"object","required":["CRS","BoundingBox","Origin","Resolution","MinZoom","MaxZoom"],"title":"Geo","description":"rio-cogeo validation GEO information."},"GeometryCollection-Input":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"GeometryCollection","title":"Type"},"geometries":{"items":{"oneOf":[{"$ref":"#/components/schemas/Point-Input"},{"$ref":"#/components/schemas/MultiPoint-Input"},{"$ref":"#/components/schemas/LineString-Input"},{"$ref":"#/components/schemas/MultiLineString-Input"},{"$ref":"#/components/schemas/Polygon-Input"},{"$ref":"#/components/schemas/MultiPolygon-Input"},{"$ref":"#/components/schemas/GeometryCollection-Input"}],"discriminator":{"propertyName":"type","mapping":{"GeometryCollection":"#/components/schemas/GeometryCollection-Input","LineString":"#/components/schemas/LineString-Input","MultiLineString":"#/components/schemas/MultiLineString-Input","MultiPoint":"#/components/schemas/MultiPoint-Input","MultiPolygon":"#/components/schemas/MultiPolygon-Input","Point":"#/components/schemas/Point-Input","Polygon":"#/components/schemas/Polygon-Input"}}},"type":"array","title":"Geometries"}},"type":"object","required":["type","geometries"],"title":"GeometryCollection","description":"GeometryCollection Model"},"GeometryCollection-Output":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"GeometryCollection","title":"Type"},"geometries":{"items":{"oneOf":[{"$ref":"#/components/schemas/geojson_pydantic__geometries__Point-Output"},{"$ref":"#/components/schemas/MultiPoint-Output"},{"$ref":"#/components/schemas/LineString-Output"},{"$ref":"#/components/schemas/MultiLineString-Output"},{"$ref":"#/components/schemas/Polygon-Output"},{"$ref":"#/components/schemas/MultiPolygon-Output"},{"$ref":"#/components/schemas/GeometryCollection-Output"}],"discriminator":{"propertyName":"type","mapping":{"GeometryCollection":"#/components/schemas/GeometryCollection-Output","LineString":"#/components/schemas/LineString-Output","MultiLineString":"#/components/schemas/MultiLineString-Output","MultiPoint":"#/components/schemas/MultiPoint-Output","MultiPolygon":"#/components/schemas/MultiPolygon-Output","Point":"#/components/schemas/geojson_pydantic__geometries__Point-Output","Polygon":"#/components/schemas/Polygon-Output"}}},"type":"array","title":"Geometries"}},"type":"object","required":["bbox","type","geometries"],"title":"GeometryCollection","description":"GeometryCollection Model"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"IFD":{"properties":{"Level":{"type":"integer","title":"Level"},"Width":{"type":"integer","title":"Width"},"Height":{"type":"integer","title":"Height"},"Blocksize":{"prefixItems":[{"type":"integer"},{"type":"integer"}],"type":"array","maxItems":2,"minItems":2,"title":"Blocksize"},"Decimation":{"type":"integer","title":"Decimation"}},"type":"object","required":["Level","Width","Height","Blocksize","Decimation"],"title":"IFD","description":"ImageFileDirectory info."},"ImageType":{"type":"string","enum":["png","npy","tif","jpeg","jpg","jp2","webp","pngraw"],"title":"ImageType","description":"Available Output image type."},"Item":{"properties":{"type":{"type":"string","title":"Type"},"stac_version":{"type":"string","title":"Stac Version"},"stac_extensions":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Stac Extensions"},"id":{"type":"string","title":"Id"},"geometry":{"type":"object","title":"Geometry"},"bbox":{"items":{"type":"number"},"type":"array","title":"Bbox"},"properties":{"type":"object","title":"Properties"},"links":{"items":{"type":"object"},"type":"array","title":"Links"},"assets":{"type":"object","title":"Assets"},"collection":{"type":"string","title":"Collection"}},"type":"object","required":["type","stac_version","stac_extensions","id","geometry","bbox","properties","links","assets","collection"],"title":"Item","description":"STAC Item."},"LineString-Input":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"LineString","title":"Type"},"coordinates":{"items":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}]},"type":"array","minItems":2,"title":"Coordinates"}},"type":"object","required":["type","coordinates"],"title":"LineString","description":"LineString Model"},"LineString-Output":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"LineString","title":"Type"},"coordinates":{"items":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}]},"type":"array","minItems":2,"title":"Coordinates"}},"type":"object","required":["bbox","type","coordinates"],"title":"LineString","description":"LineString Model"},"Link":{"properties":{"href":{"type":"string","title":"Href","description":"Supplies the URI to a remote resource (or resource fragment).","examples":["http://data.example.com/buildings/123"]},"rel":{"type":"string","title":"Rel","description":"The type or semantics of the relation.","examples":["alternate"]},"type":{"anyOf":[{"$ref":"#/components/schemas/MediaType"},{"type":"null"}],"description":"A hint indicating what the media type of the result of dereferencing the link should be.","examples":["application/geo+json"]},"templated":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Templated","description":"This flag set to true if the link is a URL template."},"varBase":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Varbase","description":"A base path to retrieve semantic information about the variables used in URL template.","examples":["/ogcapi/vars/"]},"hreflang":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Hreflang","description":"A hint indicating what the language of the result of dereferencing the link should be.","examples":["en"]},"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title","description":"Used to label the destination of a link such that it can be used as a human-readable identifier.","examples":["Trierer Strasse 70, 53115 Bonn"]},"length":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Length"}},"type":"object","required":["href","rel","type","templated","varBase","hreflang","title","length"],"title":"Link","description":"Link model.\n\nRef: https://github.com/opengeospatial/ogcapi-tiles/blob/master/openapi/schemas/common-core/link.yaml\n\nCode generated using https://github.com/koxudaxi/datamodel-code-generator/"},"MediaType":{"type":"string","enum":["image/tiff; application=geotiff","image/jp2","image/png","image/png","image/jpeg","image/jpg","image/webp","application/x-binary","application/xml","application/json","application/geo+json","text/html","text/plain","application/x-protobuf","application/vnd.mapbox-vector-tile","application/ndjson","application/geo+json-seq","application/schema+json","text/csv","application/vnd.oai.openapi+json;version=3.0","application/vnd.oai.openapi;version=3.0"],"title":"MediaType","description":"Responses Media types formerly known as MIME types."},"MosaicJSON-Input":{"properties":{"mosaicjson":{"type":"string","title":"Mosaicjson"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"version":{"type":"string","title":"Version","default":"1.0.0"},"attribution":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attribution"},"minzoom":{"type":"integer","maximum":30.0,"minimum":0.0,"title":"Minzoom","default":0},"maxzoom":{"type":"integer","maximum":30.0,"minimum":0.0,"title":"Maxzoom","default":30},"quadkey_zoom":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Quadkey Zoom"},"bounds":{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4,"title":"Bounds","default":[-180,-90,180,90]},"center":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"integer"}],"type":"array","maxItems":3,"minItems":3},{"type":"null"}],"title":"Center"},"tiles":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"type":"object","title":"Tiles"},"tilematrixset":{"anyOf":[{"$ref":"#/components/schemas/TileMatrixSet-Input"},{"type":"null"}]},"asset_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Asset Type"},"asset_prefix":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Asset Prefix"},"data_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Data Type"},"colormap":{"anyOf":[{"additionalProperties":{"prefixItems":[{"type":"integer"},{"type":"integer"},{"type":"integer"},{"type":"integer"}],"type":"array","maxItems":4,"minItems":4},"type":"object"},{"type":"null"}],"title":"Colormap"},"layers":{"anyOf":[{"type":"object"},{"type":"null"}],"title":"Layers"}},"type":"object","required":["mosaicjson","tiles"],"title":"MosaicJSON","description":"MosaicJSON model.\n\nBased on https://github.com/developmentseed/mosaicjson-spec"},"MosaicJSON-Output":{"properties":{"mosaicjson":{"type":"string","title":"Mosaicjson"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"version":{"type":"string","title":"Version","default":"1.0.0"},"attribution":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attribution"},"minzoom":{"type":"integer","maximum":30.0,"minimum":0.0,"title":"Minzoom","default":0},"maxzoom":{"type":"integer","maximum":30.0,"minimum":0.0,"title":"Maxzoom","default":30},"quadkey_zoom":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Quadkey Zoom"},"bounds":{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4,"title":"Bounds","default":[-180,-90,180,90]},"center":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"integer"}],"type":"array","maxItems":3,"minItems":3},{"type":"null"}],"title":"Center"},"tiles":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"type":"object","title":"Tiles"},"tilematrixset":{"anyOf":[{"$ref":"#/components/schemas/TileMatrixSet-Output"},{"type":"null"}]},"asset_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Asset Type"},"asset_prefix":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Asset Prefix"},"data_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Data Type"},"colormap":{"anyOf":[{"additionalProperties":{"prefixItems":[{"type":"integer"},{"type":"integer"},{"type":"integer"},{"type":"integer"}],"type":"array","maxItems":4,"minItems":4},"type":"object"},{"type":"null"}],"title":"Colormap"},"layers":{"anyOf":[{"type":"object"},{"type":"null"}],"title":"Layers"}},"type":"object","required":["mosaicjson","name","description","version","attribution","minzoom","maxzoom","quadkey_zoom","bounds","center","tiles","tilematrixset","asset_type","asset_prefix","data_type","colormap","layers"],"title":"MosaicJSON","description":"MosaicJSON model.\n\nBased on https://github.com/developmentseed/mosaicjson-spec"},"MultiLineString-Input":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"MultiLineString","title":"Type"},"coordinates":{"items":{"items":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}]},"type":"array","minItems":2},"type":"array","title":"Coordinates"}},"type":"object","required":["type","coordinates"],"title":"MultiLineString","description":"MultiLineString Model"},"MultiLineString-Output":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"MultiLineString","title":"Type"},"coordinates":{"items":{"items":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}]},"type":"array","minItems":2},"type":"array","title":"Coordinates"}},"type":"object","required":["bbox","type","coordinates"],"title":"MultiLineString","description":"MultiLineString Model"},"MultiPoint-Input":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"MultiPoint","title":"Type"},"coordinates":{"items":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}]},"type":"array","title":"Coordinates"}},"type":"object","required":["type","coordinates"],"title":"MultiPoint","description":"MultiPoint Model"},"MultiPoint-Output":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"MultiPoint","title":"Type"},"coordinates":{"items":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}]},"type":"array","title":"Coordinates"}},"type":"object","required":["bbox","type","coordinates"],"title":"MultiPoint","description":"MultiPoint Model"},"MultiPolygon-Input":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"MultiPolygon","title":"Type"},"coordinates":{"items":{"items":{"items":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}]},"type":"array","minItems":4},"type":"array"},"type":"array","title":"Coordinates"}},"type":"object","required":["type","coordinates"],"title":"MultiPolygon","description":"MultiPolygon Model"},"MultiPolygon-Output":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"MultiPolygon","title":"Type"},"coordinates":{"items":{"items":{"items":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}]},"type":"array","minItems":4},"type":"array"},"type":"array","title":"Coordinates"}},"type":"object","required":["bbox","type","coordinates"],"title":"MultiPolygon","description":"MultiPolygon Model"},"Point-Input":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"Point","title":"Type"},"coordinates":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}],"title":"Coordinates"}},"type":"object","required":["type","coordinates"],"title":"Point","description":"Point Model"},"Polygon-Input":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"Polygon","title":"Type"},"coordinates":{"items":{"items":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}]},"type":"array","minItems":4},"type":"array","title":"Coordinates"}},"type":"object","required":["type","coordinates"],"title":"Polygon","description":"Polygon Model"},"Polygon-Output":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"Polygon","title":"Type"},"coordinates":{"items":{"items":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}]},"type":"array","minItems":4},"type":"array","title":"Coordinates"}},"type":"object","required":["bbox","type","coordinates"],"title":"Polygon","description":"Polygon Model"},"Profile":{"properties":{"Bands":{"type":"integer","title":"Bands"},"Width":{"type":"integer","title":"Width"},"Height":{"type":"integer","title":"Height"},"Tiled":{"type":"boolean","title":"Tiled"},"Dtype":{"type":"string","title":"Dtype"},"Interleave":{"type":"string","title":"Interleave"},"AlphaBand":{"type":"boolean","title":"Alphaband"},"InternalMask":{"type":"boolean","title":"Internalmask"},"Nodata":{"title":"Nodata"},"ColorInterp":{"items":{"type":"string"},"type":"array","title":"Colorinterp"},"ColorMap":{"type":"boolean","title":"Colormap"},"Scales":{"items":{"type":"number"},"type":"array","title":"Scales"},"Offsets":{"items":{"type":"number"},"type":"array","title":"Offsets"}},"type":"object","required":["Bands","Width","Height","Tiled","Dtype","Interleave","AlphaBand","InternalMask","Nodata","ColorInterp","ColorMap","Scales","Offsets"],"title":"Profile","description":"rio-cogeo validation Profile information."},"StatisticsInGeoJSON":{"properties":{"statistics":{"additionalProperties":{"$ref":"#/components/schemas/BandStatistics"},"type":"object","title":"Statistics"}},"additionalProperties":true,"type":"object","required":["statistics"],"title":"StatisticsInGeoJSON","description":"Statistics model in geojson response."},"TMSBoundingBox-Input":{"properties":{"lowerLeft":{"prefixItems":[{"anyOf":[{"type":"number"},{"type":"integer"}]},{"anyOf":[{"type":"number"},{"type":"integer"}]}],"type":"array","maxItems":2,"minItems":2,"title":"Lowerleft","description":"A 2D Point in the CRS indicated elsewhere"},"upperRight":{"prefixItems":[{"anyOf":[{"type":"number"},{"type":"integer"}]},{"anyOf":[{"type":"number"},{"type":"integer"}]}],"type":"array","maxItems":2,"minItems":2,"title":"Upperright","description":"A 2D Point in the CRS indicated elsewhere"},"crs":{"anyOf":[{"$ref":"#/components/schemas/CRS"},{"type":"null"}],"description":"Coordinate Reference System (CRS)"},"orderedAxes":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":2,"minItems":2},{"type":"null"}],"title":"Orderedaxes","description":"Ordered list of names of the dimensions defined in the CRS"}},"type":"object","required":["lowerLeft","upperRight"],"title":"TMSBoundingBox","description":"Bounding box\n\nref: https://github.com/opengeospatial/2D-Tile-Matrix-Set/blob/master/schemas/tms/2.0/json/2DBoundingBox.json"},"TMSBoundingBox-Output":{"properties":{"lowerLeft":{"prefixItems":[{"anyOf":[{"type":"number"},{"type":"integer"}]},{"anyOf":[{"type":"number"},{"type":"integer"}]}],"type":"array","maxItems":2,"minItems":2,"title":"Lowerleft","description":"A 2D Point in the CRS indicated elsewhere"},"upperRight":{"prefixItems":[{"anyOf":[{"type":"number"},{"type":"integer"}]},{"anyOf":[{"type":"number"},{"type":"integer"}]}],"type":"array","maxItems":2,"minItems":2,"title":"Upperright","description":"A 2D Point in the CRS indicated elsewhere"},"crs":{"anyOf":[{"$ref":"#/components/schemas/CRS"},{"type":"null"}],"description":"Coordinate Reference System (CRS)"},"orderedAxes":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":2,"minItems":2},{"type":"null"}],"title":"Orderedaxes","description":"Ordered list of names of the dimensions defined in the CRS"}},"type":"object","required":["lowerLeft","upperRight","crs","orderedAxes"],"title":"TMSBoundingBox","description":"Bounding box\n\nref: https://github.com/opengeospatial/2D-Tile-Matrix-Set/blob/master/schemas/tms/2.0/json/2DBoundingBox.json"},"TileJSON":{"properties":{"tilejson":{"type":"string","title":"Tilejson","default":"2.2.0"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"version":{"type":"string","title":"Version","default":"1.0.0"},"attribution":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Attribution"},"template":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Template"},"legend":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Legend"},"scheme":{"type":"string","enum":["xyz","tms"],"title":"Scheme","default":"xyz"},"tiles":{"items":{"type":"string"},"type":"array","title":"Tiles"},"grids":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Grids"},"data":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Data"},"minzoom":{"type":"integer","maximum":30.0,"minimum":0.0,"title":"Minzoom","default":0},"maxzoom":{"type":"integer","maximum":30.0,"minimum":0.0,"title":"Maxzoom","default":30},"bounds":{"items":{"type":"number"},"type":"array","title":"Bounds","default":[-180,-90,180,90]},"center":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"integer"}],"type":"array","maxItems":3,"minItems":3},{"type":"null"}],"title":"Center"}},"type":"object","required":["tilejson","name","description","version","attribution","template","legend","scheme","tiles","grids","data","minzoom","maxzoom","bounds","center"],"title":"TileJSON","description":"TileJSON model.\n\nBased on https://github.com/mapbox/tilejson-spec/tree/master/2.2.0"},"TileMatrix-Input":{"properties":{"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title","description":"Title of this tile matrix, normally used for display to a human"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"Brief narrative description of this tile matrix set, normally available for display to a human"},"keywords":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Keywords","description":"Unordered list of one or more commonly used or formalized word(s) or phrase(s) used to describe this dataset"},"id":{"type":"string","pattern":"^\\-?[0-9]+$","title":"Id","description":"Identifier selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile. Implementation of 'identifier'"},"scaleDenominator":{"type":"number","title":"Scaledenominator","description":"Scale denominator of this tile matrix"},"cellSize":{"type":"number","title":"Cellsize","description":"Cell size of this tile matrix"},"cornerOfOrigin":{"type":"string","enum":["topLeft","bottomLeft"],"title":"Corneroforigin","description":"The corner of the tile matrix (_topLeft_ or _bottomLeft_) used as the origin for numbering tile rows and columns. This corner is also a corner of the (0, 0) tile.","default":"topLeft"},"pointOfOrigin":{"prefixItems":[{"anyOf":[{"type":"number"},{"type":"integer"}]},{"anyOf":[{"type":"number"},{"type":"integer"}]}],"type":"array","maxItems":2,"minItems":2,"title":"Pointoforigin","description":"Precise position in CRS coordinates of the corner of origin (e.g. the top-left corner) for this tile matrix. This position is also a corner of the (0, 0) tile. In previous version, this was 'topLeftCorner' and 'cornerOfOrigin' did not exist."},"tileWidth":{"type":"integer","multipleOf":1.0,"minimum":1.0,"title":"Tilewidth","description":"Width of each tile of this tile matrix in pixels"},"tileHeight":{"type":"integer","multipleOf":1.0,"minimum":1.0,"title":"Tileheight","description":"Height of each tile of this tile matrix in pixels"},"matrixWidth":{"type":"integer","multipleOf":1.0,"minimum":1.0,"title":"Matrixwidth","description":"Width of the matrix (number of tiles in width)"},"matrixHeight":{"type":"integer","multipleOf":1.0,"minimum":1.0,"title":"Matrixheight","description":"Height of the matrix (number of tiles in height)"},"variableMatrixWidths":{"anyOf":[{"items":{"$ref":"#/components/schemas/variableMatrixWidth"},"type":"array"},{"type":"null"}],"title":"Variablematrixwidths","description":"Describes the rows that has variable matrix width"}},"additionalProperties":false,"type":"object","required":["id","scaleDenominator","cellSize","pointOfOrigin","tileWidth","tileHeight","matrixWidth","matrixHeight"],"title":"TileMatrix","description":"Tile Matrix Definition\n\nA tile matrix, usually corresponding to a particular zoom level of a TileMatrixSet.\n\nref: https://github.com/opengeospatial/2D-Tile-Matrix-Set/blob/master/schemas/tms/2.0/json/tileMatrix.json"},"TileMatrix-Output":{"properties":{"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title","description":"Title of this tile matrix, normally used for display to a human"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"Brief narrative description of this tile matrix set, normally available for display to a human"},"keywords":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Keywords","description":"Unordered list of one or more commonly used or formalized word(s) or phrase(s) used to describe this dataset"},"id":{"type":"string","pattern":"^\\-?[0-9]+$","title":"Id","description":"Identifier selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile. Implementation of 'identifier'"},"scaleDenominator":{"type":"number","title":"Scaledenominator","description":"Scale denominator of this tile matrix"},"cellSize":{"type":"number","title":"Cellsize","description":"Cell size of this tile matrix"},"cornerOfOrigin":{"type":"string","enum":["topLeft","bottomLeft"],"title":"Corneroforigin","description":"The corner of the tile matrix (_topLeft_ or _bottomLeft_) used as the origin for numbering tile rows and columns. This corner is also a corner of the (0, 0) tile.","default":"topLeft"},"pointOfOrigin":{"prefixItems":[{"anyOf":[{"type":"number"},{"type":"integer"}]},{"anyOf":[{"type":"number"},{"type":"integer"}]}],"type":"array","maxItems":2,"minItems":2,"title":"Pointoforigin","description":"Precise position in CRS coordinates of the corner of origin (e.g. the top-left corner) for this tile matrix. This position is also a corner of the (0, 0) tile. In previous version, this was 'topLeftCorner' and 'cornerOfOrigin' did not exist."},"tileWidth":{"type":"integer","multipleOf":1.0,"minimum":1.0,"title":"Tilewidth","description":"Width of each tile of this tile matrix in pixels"},"tileHeight":{"type":"integer","multipleOf":1.0,"minimum":1.0,"title":"Tileheight","description":"Height of each tile of this tile matrix in pixels"},"matrixWidth":{"type":"integer","multipleOf":1.0,"minimum":1.0,"title":"Matrixwidth","description":"Width of the matrix (number of tiles in width)"},"matrixHeight":{"type":"integer","multipleOf":1.0,"minimum":1.0,"title":"Matrixheight","description":"Height of the matrix (number of tiles in height)"},"variableMatrixWidths":{"anyOf":[{"items":{"$ref":"#/components/schemas/variableMatrixWidth"},"type":"array"},{"type":"null"}],"title":"Variablematrixwidths","description":"Describes the rows that has variable matrix width"}},"additionalProperties":false,"type":"object","required":["title","description","keywords","id","scaleDenominator","cellSize","cornerOfOrigin","pointOfOrigin","tileWidth","tileHeight","matrixWidth","matrixHeight","variableMatrixWidths"],"title":"TileMatrix","description":"Tile Matrix Definition\n\nA tile matrix, usually corresponding to a particular zoom level of a TileMatrixSet.\n\nref: https://github.com/opengeospatial/2D-Tile-Matrix-Set/blob/master/schemas/tms/2.0/json/tileMatrix.json"},"TileMatrixSet-Input":{"properties":{"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title","description":"Title of this tile matrix set, normally used for display to a human"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"Brief narrative description of this tile matrix set, normally available for display to a human"},"keywords":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Keywords","description":"Unordered list of one or more commonly used or formalized word(s) or phrase(s) used to describe this tile matrix set"},"id":{"anyOf":[{"type":"string","pattern":"^[\\w\\d_\\-]+$"},{"type":"null"}],"title":"Id","description":"Tile matrix set identifier. Implementation of 'identifier'"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri","description":"Reference to an official source for this tileMatrixSet"},"orderedAxes":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":2,"minItems":2},{"type":"null"}],"title":"Orderedaxes","description":"Ordered list of names of the dimensions defined in the CRS"},"crs":{"allOf":[{"$ref":"#/components/schemas/CRS"}],"description":"Coordinate Reference System (CRS)"},"wellKnownScaleSet":{"anyOf":[{"type":"string","minLength":1,"format":"uri"},{"type":"null"}],"title":"Wellknownscaleset","description":"Reference to a well-known scale set"},"boundingBox":{"anyOf":[{"$ref":"#/components/schemas/TMSBoundingBox-Input"},{"type":"null"}],"description":"Minimum bounding rectangle surrounding the tile matrix set, in the supported CRS"},"tileMatrices":{"items":{"$ref":"#/components/schemas/TileMatrix-Input"},"type":"array","title":"Tilematrices","description":"Describes scale levels and its tile matrices"}},"type":"object","required":["crs","tileMatrices"],"title":"TileMatrixSet","description":"Tile Matrix Set Definition\n\nA definition of a tile matrix set following the Tile Matrix Set standard.\nFor tileset metadata, such a description (in `tileMatrixSet` property) is only required for offline use,\nas an alternative to a link with a `http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme` relation type.\n\nref: https://github.com/opengeospatial/2D-Tile-Matrix-Set/blob/master/schemas/tms/2.0/json/tileMatrixSet.json"},"TileMatrixSet-Output":{"properties":{"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title","description":"Title of this tile matrix set, normally used for display to a human"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"Brief narrative description of this tile matrix set, normally available for display to a human"},"keywords":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Keywords","description":"Unordered list of one or more commonly used or formalized word(s) or phrase(s) used to describe this tile matrix set"},"id":{"anyOf":[{"type":"string","pattern":"^[\\w\\d_\\-]+$"},{"type":"null"}],"title":"Id","description":"Tile matrix set identifier. Implementation of 'identifier'"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri","description":"Reference to an official source for this tileMatrixSet"},"orderedAxes":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":2,"minItems":2},{"type":"null"}],"title":"Orderedaxes","description":"Ordered list of names of the dimensions defined in the CRS"},"crs":{"allOf":[{"$ref":"#/components/schemas/CRS"}],"description":"Coordinate Reference System (CRS)"},"wellKnownScaleSet":{"anyOf":[{"type":"string","minLength":1,"format":"uri"},{"type":"null"}],"title":"Wellknownscaleset","description":"Reference to a well-known scale set"},"boundingBox":{"anyOf":[{"$ref":"#/components/schemas/TMSBoundingBox-Output"},{"type":"null"}],"description":"Minimum bounding rectangle surrounding the tile matrix set, in the supported CRS"},"tileMatrices":{"items":{"$ref":"#/components/schemas/TileMatrix-Output"},"type":"array","title":"Tilematrices","description":"Describes scale levels and its tile matrices"}},"type":"object","required":["title","description","keywords","id","uri","orderedAxes","crs","wellKnownScaleSet","boundingBox","tileMatrices"],"title":"TileMatrixSet","description":"Tile Matrix Set Definition\n\nA definition of a tile matrix set following the Tile Matrix Set standard.\nFor tileset metadata, such a description (in `tileMatrixSet` property) is only required for offline use,\nas an alternative to a link with a `http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme` relation type.\n\nref: https://github.com/opengeospatial/2D-Tile-Matrix-Set/blob/master/schemas/tms/2.0/json/tileMatrixSet.json"},"TileMatrixSetLink":{"properties":{"href":{"type":"string","minLength":1,"format":"uri","title":"Href"},"rel":{"type":"string","title":"Rel","default":"item"},"type":{"type":"string","title":"Type","default":"application/json"}},"type":"object","required":["href","rel","type"],"title":"TileMatrixSetLink","description":"TileMatrixSetLink model.\n\nBased on http://docs.opengeospatial.org/per/19-069.html#_tilematrixsets"},"TileMatrixSetList":{"properties":{"tileMatrixSets":{"items":{"$ref":"#/components/schemas/TileMatrixSetRef"},"type":"array","title":"Tilematrixsets"}},"type":"object","required":["tileMatrixSets"],"title":"TileMatrixSetList","description":"TileMatrixSetList model.\n\nBased on http://docs.opengeospatial.org/per/19-069.html#_tilematrixsets"},"TileMatrixSetRef":{"properties":{"id":{"type":"string","title":"Id"},"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title"},"links":{"items":{"$ref":"#/components/schemas/TileMatrixSetLink"},"type":"array","title":"Links"}},"type":"object","required":["id","title","links"],"title":"TileMatrixSetRef","description":"TileMatrixSetRef model.\n\nBased on http://docs.opengeospatial.org/per/19-069.html#_tilematrixsets"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"},"cogeo_mosaic__models__Info":{"properties":{"bounds":{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4,"title":"Bounds","default":[-180,-90,180,90]},"center":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"integer"}],"type":"array","maxItems":3,"minItems":3},{"type":"null"}],"title":"Center"},"minzoom":{"type":"integer","maximum":30.0,"minimum":0.0,"title":"Minzoom","default":0},"maxzoom":{"type":"integer","maximum":30.0,"minimum":0.0,"title":"Maxzoom","default":30},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"quadkeys":{"items":{"type":"string"},"type":"array","title":"Quadkeys","default":[]},"tilematrixset":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tilematrixset"}},"type":"object","required":["bounds","center","minzoom","maxzoom","name","quadkeys","tilematrixset"],"title":"Info","description":"Mosaic info responses."},"geojson_pydantic__features__Feature_Polygon_Info___1":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"Feature","title":"Type"},"geometry":{"anyOf":[{"$ref":"#/components/schemas/Polygon-Output"},{"type":"null"}]},"properties":{"anyOf":[{"$ref":"#/components/schemas/rio_tiler__models__Info"},{"type":"null"}]},"id":{"anyOf":[{"type":"integer"},{"type":"string"},{"type":"null"}],"title":"Id"}},"type":"object","required":["bbox","type","geometry","properties","id"],"title":"Feature[Polygon, Info]"},"geojson_pydantic__features__Feature_Polygon_Info___2":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"Feature","title":"Type"},"geometry":{"anyOf":[{"$ref":"#/components/schemas/Polygon-Output"},{"type":"null"}]},"properties":{"anyOf":[{"$ref":"#/components/schemas/cogeo_mosaic__models__Info"},{"type":"null"}]},"id":{"anyOf":[{"type":"integer"},{"type":"string"},{"type":"null"}],"title":"Id"}},"type":"object","required":["bbox","type","geometry","properties","id"],"title":"Feature[Polygon, Info]"},"geojson_pydantic__geometries__Point-Output":{"properties":{"bbox":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":4,"minItems":4},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":6,"minItems":6},{"type":"null"}],"title":"Bbox"},"type":{"const":"Point","title":"Type"},"coordinates":{"anyOf":[{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2},{"prefixItems":[{"type":"number"},{"type":"number"},{"type":"number"}],"type":"array","maxItems":3,"minItems":3}],"title":"Coordinates"}},"type":"object","required":["bbox","type","coordinates"],"title":"Point","description":"Point Model"},"rio_cogeo__models__Info":{"properties":{"Path":{"type":"string","title":"Path"},"Driver":{"type":"string","title":"Driver"},"COG":{"type":"boolean","title":"Cog"},"Compression":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Compression"},"ColorSpace":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Colorspace"},"COG_errors":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Cog Errors"},"COG_warnings":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Cog Warnings"},"Profile":{"$ref":"#/components/schemas/Profile"},"GEO":{"$ref":"#/components/schemas/Geo"},"Tags":{"additionalProperties":{"type":"object"},"type":"object","title":"Tags"},"Band Metadata":{"additionalProperties":{"$ref":"#/components/schemas/BandMetadata"},"type":"object","title":"Band Metadata"},"IFD":{"items":{"$ref":"#/components/schemas/IFD"},"type":"array","title":"Ifd"}},"type":"object","required":["Path","Driver","COG","Compression","ColorSpace","COG_errors","COG_warnings","Profile","GEO","Tags","Band Metadata","IFD"],"title":"Info","description":"rio-cogeo Info."},"rio_tiler__models__Info":{"properties":{"bounds":{"$ref":"#/components/schemas/BoundingBox"},"minzoom":{"type":"integer","title":"Minzoom"},"maxzoom":{"type":"integer","title":"Maxzoom"},"band_metadata":{"items":{"prefixItems":[{"type":"string"},{"type":"object"}],"type":"array","maxItems":2,"minItems":2},"type":"array","title":"Band Metadata"},"band_descriptions":{"items":{"prefixItems":[{"type":"string"},{"type":"string"}],"type":"array","maxItems":2,"minItems":2},"type":"array","title":"Band Descriptions"},"dtype":{"type":"string","title":"Dtype"},"nodata_type":{"type":"string","enum":["Alpha","Mask","Internal","Nodata","None"],"title":"Nodata Type"},"colorinterp":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Colorinterp"},"scale":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Scale"},"offset":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Offset"},"colormap":{"anyOf":[{"additionalProperties":{"prefixItems":[{"type":"integer"},{"type":"integer"},{"type":"integer"},{"type":"integer"}],"type":"array","maxItems":4,"minItems":4},"type":"object"},{"type":"null"}],"title":"Colormap"}},"additionalProperties":true,"type":"object","required":["bounds","minzoom","maxzoom","band_metadata","band_descriptions","dtype","nodata_type","colorinterp","scale","offset","colormap"],"title":"Info","description":"Dataset Info."},"titiler__core__models__responses__Point":{"properties":{"coordinates":{"items":{"type":"number"},"type":"array","title":"Coordinates"},"values":{"items":{"type":"number"},"type":"array","title":"Values"},"band_names":{"items":{"type":"string"},"type":"array","title":"Band Names"}},"type":"object","required":["coordinates","values","band_names"],"title":"Point","description":"Point model.\n\nresponse model for `/point` endpoints"},"titiler__mosaic__models__responses__Point":{"properties":{"coordinates":{"items":{"type":"number"},"type":"array","title":"Coordinates"},"values":{"items":{"prefixItems":[{"type":"string"},{"items":{"type":"number"},"type":"array"},{"items":{"type":"string"},"type":"array"}],"type":"array","maxItems":3,"minItems":3},"type":"array","title":"Values"}},"type":"object","required":["coordinates","values"],"title":"Point","description":"Point model.\n\nresponse model for `/point` endpoints"},"variableMatrixWidth":{"properties":{"coalesce":{"type":"integer","multipleOf":1.0,"minimum":2.0,"title":"Coalesce","description":"Number of tiles in width that coalesce in a single tile for these rows"},"minTileRow":{"type":"integer","multipleOf":1.0,"minimum":0.0,"title":"Mintilerow","description":"First tile row where the coalescence factor applies for this tilematrix"},"maxTileRow":{"type":"integer","multipleOf":1.0,"minimum":0.0,"title":"Maxtilerow","description":"Last tile row where the coalescence factor applies for this tilematrix"}},"type":"object","required":["coalesce","minTileRow","maxTileRow"],"title":"variableMatrixWidth","description":"Variable Matrix Width Definition\n\nref: https://github.com/opengeospatial/2D-Tile-Matrix-Set/blob/master/schemas/tms/2.0/json/variableMatrixWidth.json"}},"securitySchemes":{"APIKeyQuery":{"type":"apiKey","in":"query","name":"access_token"}}}}