Skip to content

Commit

Permalink
markdown source builds
Browse files Browse the repository at this point in the history
Auto-generated via `{sandpaper}`
Source  : 856842c
Branch  : main
Author  : Francesco Nattino <[email protected]>
Time    : 2025-01-15 10:04:34 +0000
Message : Merge pull request #128 from esciencecenter-digital-skills/fix-build-and-deploy

Fix issue with build and deploy
  • Loading branch information
actions-user committed Jan 15, 2025
1 parent 1f53462 commit a3471f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 05-access-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ following syntax (see [docs](https://pystac-client.readthedocs.io/en/stable/usag

```python
search = client.search(
collections=[collection],
collections=[collection_sentinel_2_l2a],
intersects=point,
datetime='2023-07-01/2023-08-31',
query=['eo:cloud_cover<1']
Expand Down Expand Up @@ -342,7 +342,7 @@ To load the saved search results as a `ItemCollection` we can use [`pystac.ItemC

```python
import pystac
items_loaded = pystac.ItemCollection.from_file("../data/stac_json/rhodes_sentinel-2.json")
items_loaded = pystac.ItemCollection.from_file("rhodes_sentinel-2.json")
```

The loaded item collection (`items_loaded`) is equivalent to the one returned earlier by `search.item_collection()` (`items`). You can thus perform the same actions on it: you can check the number of items (`len(items_loaded)`), you can loop over items (`for item in items_loaded: ...`), and you can access individual elements using their index (`items_loaded[0]`).
Expand Down
2 changes: 1 addition & 1 deletion md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"episodes/02-intro-vector-data.md" "3bf0a19a7e0e3990a0f2ee02815d1147" "site/built/02-intro-vector-data.md" "2024-06-25"
"episodes/03-crs.md" "40e659ca7228c07f84c40b51b601dc55" "site/built/03-crs.md" "2024-06-25"
"episodes/04-geo-landscape.md" "09e93cefc450045e23f31f3f0d00c6e1" "site/built/04-geo-landscape.md" "2024-06-25"
"episodes/05-access-data.md" "9bd7a10389cbe2aa864318c29d048b13" "site/built/05-access-data.md" "2024-06-25"
"episodes/05-access-data.md" "35ffa0183c99012a59b58e805d56abcd" "site/built/05-access-data.md" "2025-01-15"
"episodes/06-raster-intro.md" "36436ecf0f8ea888f79bc6e38b4d9ac3" "site/built/06-raster-intro.md" "2024-06-30"
"episodes/07-vector-data-in-python.md" "30b5a07712b8ca263b761142d81cb49d" "site/built/07-vector-data-in-python.md" "2024-06-25"
"episodes/08-crop-raster-data.md" "e5af59e7196cffcf7b1defcd0d26764d" "site/built/08-crop-raster-data.md" "2024-06-25"
Expand Down

0 comments on commit a3471f8

Please sign in to comment.