Query features by bounding box or H3 cell
elements.query(ElementQueryParams**kwargs) -> FeatureCollection
GET/api/v1/features
Query features by bounding box or H3 cell
Parameters
Query features by bounding box or H3 cell
import os
from plaza import Plaza
client = Plaza(
api_key=os.environ.get("PLAZA_API_KEY"), # This is the default and can be omitted
)
feature_collection = client.elements.query()
print(feature_collection.features)