File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -168,3 +168,22 @@ by finding links with a ``"rel"`` type of ``"next"`` and parsing them to constru
168168implementation of this ``"next" `` link parsing assumes that the link follows the spec for an extended STAC link as
169169described in the `STAC API - Item Search: Paging <https://github.com/radiantearth/stac-api-spec/tree/master/item-search#paging >`__
170170section. See the :mod: `Paging <pystac_client.paging> ` docs for details on how to customize this behavior.
171+
172+ Query Filter
173+ ------------
174+
175+ If the server supports the [query filter](https://github.com/radiantearth/stac-api-spec/tree/master/fragments/query)
176+ arbitrary Item properties can be included in the search parameters. The query parameter to :class: `ItemSearch ` accepts
177+ a JSON structure as in the STAC API spec, but also accepts an abbreviated syntax. Instead of JSON, a list of strings can
178+ be provided, in which case pystac-client will convert them to the equivalent JSON structure.
179+
180+ The syntax is simply:
181+
182+ ```
183+ <property><operator><value>
184+ e.g.,
185+
186+ eo:cloud_cover<10
187+ view:off_nadir<50
188+ platform=landsat-8
189+ ```
You can’t perform that action at this time.
0 commit comments