diff --git a/osm_data_client/models.py b/osm_data_client/models.py index de79e8b..da02af7 100644 --- a/osm_data_client/models.py +++ b/osm_data_client/models.py @@ -133,6 +133,8 @@ class RequestParams: file_name: str = "osm_export" output_type: str = "geojson" bind_zip: bool = True + centroid: bool = False + use_st_within: bool = True filters: Optional[FilterDict] = None geometry_type: Optional[list[str]] = None @@ -196,6 +198,8 @@ def to_api_params(self) -> dict[str, Any]: "fileName": self.file_name, "outputType": self.output_type, "bindZip": self.bind_zip, + "centroid": self.centroid, + "useStWithin": self.use_st_within, } if self.filters: