You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="""A CQL2 filter expression for filtering items.\n
269
+
Supports `CQL2-JSON` as defined in https://docs.ogc.org/is/21-065r2/21-065r2.htmln
270
+
Remember to URL encode the CQL2-JSON if using GET""",
271
+
openapi_examples={
272
+
"user-provided": {"value": None},
273
+
"landsat8-item": {
274
+
"value": "id='LC08_L1TP_060247_20180905_20180912_01_T1_L1TP' AND collection='landsat8_l1tp'"# noqa: E501
275
+
},
276
+
},
277
+
),
278
+
] =None,
279
+
filter_lang: Annotated[
280
+
Literal["cql2-text", "cql2-json"],
281
+
Query(
282
+
alias="filter-lang",
283
+
description="The coordinate reference system (CRS) used by spatial literals in the 'filter' value. Default is `http://www.opengis.net/def/crs/OGC/1.3/CRS84`",
description="An array of property (field) names, and direction in form of '{'field': '<property_name>', 'direction':'<direction>'}'", # noqa: E501
@@ -182,12 +180,7 @@ class PgSTACSearch(BaseModel, extra="allow"):
182
180
],
183
181
},
184
182
)
185
-
filter_crs: Optional[str] =Field(
186
-
default=None,
187
-
alias="filter-crs",
188
-
description="The coordinate reference system (CRS) used by spatial literals in the 'filter' value. Default is `http://www.opengis.net/def/crs/OGC/1.3/CRS84`",
0 commit comments