Skip to content

Commit 332c0c5

Browse files
committed
update for v1.1.0
1 parent 41afba7 commit 332c0c5

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44

55
[read the docs](https://stac-validator.readthedocs.io/en/latest/)
66

7-
8-
## Validate STAC json files against the [STAC spec](https://github.com/radiantearth/stac-spec).
9-
10-
7+
## Validate STAC json files against the [STAC spec](https://github.com/radiantearth/stac-spec).
118

129
```bash
1310
stac-validator https://raw.githubusercontent.com/radiantearth/stac-spec/master/examples/extended-item.json
@@ -60,7 +57,6 @@ or for local development
6057
pip install -e '.[dev]'
6158
```
6259

63-
6460
The [Makefile](./Makefile) has convenience commands if Make is installed.
6561

6662
```bash
@@ -81,7 +77,7 @@ make help
8177
| 1.0.0-rc.3 |
8278
| 1.0.0-rc.4 |
8379
| 1.0.0 |
84-
80+
| 1.1.0 |
8581

8682
---
8783

@@ -146,7 +142,9 @@ docker run stac-validator https://raw.githubusercontent.com/stac-extensions/proj
146142
```
147143
148144
## AWS (CDK)
145+
149146
An example [AWS CDK](https://aws.amazon.com/cdk/) deployment is available in [cdk-deployment](./cdk-deployment/README.md)
147+
150148
```bash
151149
cd cdk-deployment
152150
cdk diff
@@ -201,29 +199,29 @@ print(stac.message)
201199
```
202200
203201
**Dictionary**
204-
202+
205203
```python
206204
from stac_validator import stac_validator
207-
205+
208206
stac = stac_validator.StacValidate()
209207
stac.validate_dict(dictionary)
210208
print(stac.message)
211209
```
212210
213211
**Item Collection**
214-
212+
215213
```python
216214
from stac_validator import stac_validator
217-
215+
218216
stac = stac_validator.StacValidate()
219217
stac.validate_item_collection_dict(item_collection_dict)
220218
print(stac.message)
221219
```
220+
222221
---
223222
224223
# Testing
225224
226-
227225
```bash
228226
make test
229227
# or
@@ -233,6 +231,7 @@ pytest -v
233231
See the [tests](./tests/test_stac_validator.py) files for examples on different usages.
234232
235233
---
234+
236235
# Additional Examples
237236
238237
**--core**
@@ -292,7 +291,7 @@ stac-validator https://raw.githubusercontent.com/radiantearth/stac-spec/master/e
292291
}
293292
]
294293
```
295-
294+
296295
**--recursive**
297296
298297
```bash
@@ -324,8 +323,9 @@ stac-validator https://spot-canada-ortho.s3.amazonaws.com/catalog.json --recursi
324323
}
325324
]
326325
```
326+
327327
**--item-collection**
328328
329329
```bash
330330
stac-validator https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a/items --item-collection --pages 2
331-
```
331+
```

stac_validator/utilities.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"1.0.0-rc.3",
1515
"1.0.0-rc.4",
1616
"1.0.0",
17+
"1.1.0",
1718
]
1819

1920

0 commit comments

Comments
 (0)