@@ -36,7 +36,7 @@ You can also filter orders by their `state`, which can be useful to just see ord
3636progress:
3737
3838``` console
39- planet orders --state running
39+ planet orders list --state running
4040```
4141
4242The other options are queued, failed, success, partial and cancelled.
@@ -100,7 +100,7 @@ To create an order you need a name, a [bundle](https://developers.planet.com/api
100100First lets get the ID of an item you have download access to, using the Data API:
101101
102102```
103- planet data filter | planet data search PSScene --limit 1 - | jq -r .id
103+ planet data filter | planet data search PSScene --limit 1 --filter - | jq -r .id
104104```
105105
106106If you don't have access to PlanetScope data then replace PSScene with SkySatCollect.
@@ -515,7 +515,7 @@ One cool little trick is that you can even stream in the JSON directly with `cur
515515
516516``` console
517517curl -s https://raw.githubusercontent.com/planetlabs/planet-client-python/main/docs/cli/request-json/tools-clip-composite.json \
518- | planet orders request --item-type PSScene --bundle analytic_sr_udm2 --name 'Streaming Clip & Composite' \
518+ | planet orders request --item-type PSScene --bundle analytic_sr_udm2 --name 'Streaming Clip & Composite' --no-stac \
519519 20220605_124027_64_242b,20220605_124025_34_242b --tools - | planet orders create -
520520```
521521
@@ -550,7 +550,7 @@ STAC metadata by default, as the STAC files are small and often more useful than
550550You can easily turn off STAC output request with the ` --no-stac ` command:
551551
552552```
553- planet orders request PSScene visual --name 'No STAC' --no-stac --id 20220605_124027_64_242b
553+ planet orders request --item-type PSScene --bundle visual --name 'No STAC' --no-stac 20220605_124027_64_242b
554554```
555555
556556Currently this needs to be done for any 'composite' operation, as STAC output from composites is not yet
@@ -672,7 +672,7 @@ image that was published:
672672
673673``` console
674674planet orders request --item-type SkySatCollect --bundle analytic --name 'SkySat Latest' \
675- `planet data filter | planet data search SkySatCollect --sort 'acquired desc' --limit 1 - | jq -r .id` \
675+ `planet data filter | planet data search SkySatCollect --sort 'acquired desc' --limit 1 --filter - | jq -r .id` \
676676| planet orders create -
677677```
678678
@@ -681,7 +681,7 @@ Or get the 5 latest cloud free images in an area and create an order that clips
681681
682682``` console
683683ids=`planet data filter --geom geometry.geojson --range clear_percent gt 90 | planet data \
684- search PSScene --limit 5 - | jq -r .id | tr '\n' , | sed 's/.$//'`
684+ search PSScene --limit 5 --filter - | jq -r .id | tr '\n' , | sed 's/.$//'`
685685planet orders request --item-type PSScene --bundle analytic_sr_udm2 --name 'Clipped Scenes' \
686686 $ids --clip geometry.geojson | planet orders create -
687687```
0 commit comments