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]:
from pystac_client import Client
from typing import Any, Dict
import json

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

client = Client.open(URL)