Item Search with Intersects#

This notebook shows the use of pystac-client to perform item search with the intersects parameter, to restrict the results to an Area of Interest (AOI).

Client#

We first connect to an API by retrieving the root catalog, or landing page, of the API with the Client.open function.

[1]:
import json
from typing import Any, Dict

from pystac_client import Client

# STAC API root URL
URL = "https://planetarycomputer.microsoft.com/api/stac/v1"

client = Client.open(URL)