Edit

Share via


Tile settings in Microsoft Planetary Computer Pro

For each collection in Microsoft Planetary Computer Pro, you can configure the tile settings, which determine the default location and minimum zoom level when visualizing mosaics in the Data Explorer.

In this article, see where to find and modify tile settings for Microsoft Planetary Computer Pro.

Prerequisites

Find tile settings

The tile settings are found by going to the Collection page and selecting the Configuration button.

Screenshot of the tile settings tab in the Microsoft Planetary Computer Pro interface.

The settings are in the form of a JSON object.

Example tile settings

{
  "minZoom": 12,
  "maxItemsPerTile": 35,
  "defaultLocation": {
    "zoom": 12,
    "coordinates": [
      8.9637,
      -79.5437
    ]
  }
}

Zoom level

High resolution imagery should have a high min zoom level to avoid experiencing latency when using the explorer. Low resolution imagery can have lower min zoom levels without issue.

Note

Planetary Computer tile settings zoom must be configured as integers, even though the Explorer interface supports zooming to non-integer levels.

Default location

The defaultLocation field lets you specify the zoom level and center coordinates used when your collection first opens in the Data Explorer. For example:

{
  "defaultLocation": {
    "zoom": 12,
    "coordinates": [
      8.9637,
      -79.5437
    ]
  }
}

Note

In the list of items, there's a menu item called "Set view as default location". This isn't currently enabled.

Screenshot of the save view as default location option in the tile settings interface.