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
The CLI performs a search with limit=0 so does not get any Items, it only gets the count. To fetch the items use one or both of the `--stdout` or `--save` switches.
42
-
43
-
Specifying `--stdout` will fetch all items, paginating if necessary. If `max_items` is provided it will stop paging once that many items has been retrieved. It then prints all items to stdout as an ItemCollection. This can be useful to pipe output to another process such as [stac-terminal](https://github.com/stac-utils/stac-terminal), [geojsonio-cli](https://github.com/mapbox/geojsonio-cli), or [jq](https://stedolan.github.io/jq/).
44
+
Without the `--matched` switch, all items will be fetched, paginating if necessary. If `max_items` is provided
45
+
it will stop paging once that many items has been retrieved. It then prints all items to stdout as an ItemCollection.
46
+
This can be useful to pipe output to another process such as [stac-terminal](https://github.com/stac-utils/stac-terminal),
47
+
[geojsonio-cli](https://github.com/mapbox/geojsonio-cli), or [jq](https://stedolan.github.io/jq/).
If the Catalog supports the [Query extension](https://github.com/radiantearth/stac-api-spec/tree/master/fragments/query), any Item property can also be included in the search. Rather than requiring the JSON syntax the Query extension uses, pystac-client uses a simpler syntax that it will translate to the JSON equivalent.
62
+
If the Catalog supports the [Query extension](https://github.com/radiantearth/stac-api-spec/tree/master/fragments/query),
63
+
any Item property can also be included in the search. Rather than requiring the JSON syntax the Query extension uses,
64
+
pystac-client uses a simpler syntax that it will translate to the JSON equivalent.
58
65
59
66
```
60
67
<property><operator><value>
@@ -71,7 +78,7 @@ view:sun_elevation<20
71
78
Any number of properties can be included, and each can be included more than once to use additional operators.
0 commit comments