File tree Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
- ## [ Unreleased ]
8
+ ## [ 0.0.2 ] - 2022-09-26
9
9
10
10
### Added
11
11
Original file line number Diff line number Diff line change 25
25
26
26
STAC API Validator requires Python 3.10 and [ Poetry 1.2] ( https://python-poetry.org/docs/ ) .
27
27
28
- Install the package with development requirements :
28
+ You can install _ STAC API Validator _ via [ pip ] from [ PyPI ] :
29
29
30
30
``` console
31
- $ poetry install
31
+ $ pip install stac-api-validator
32
32
```
33
33
34
- Note: if ` poetry update ` or ` poetry install ` hang, try running ` poetry cache clear --all pypi ` to fix the issue.
34
+ and then run it:
35
35
36
- You can now run the command-line interface:
36
+ ``` console
37
+ $ stac-api-validator \
38
+ --root-url https://planetarycomputer.microsoft.com/api/stac/v1/ \
39
+ --conformance core --conformance item-search
40
+ ```
41
+
42
+ To install from a clone of this repository for development, first install the package with development requirements:
37
43
38
44
``` console
39
- $ poetry run stac-api-validator
45
+ $ poetry install
40
46
```
41
47
42
- ** Future Work** You can install _ STAC API Validator_ via [ pip] from [ PyPI] :
48
+ Note: if ` poetry update ` or ` poetry install ` hang, try running ` poetry cache clear --all pypi ` to fix the issue.
49
+
50
+ You can now run the command-line interface:
43
51
44
52
``` console
45
- $ pip install stac-api-validator
53
+ $ poetry run stac-api-validator
46
54
```
47
55
48
56
## Usage
@@ -104,7 +112,7 @@ Options:
104
112
Example:
105
113
106
114
```
107
- poetry run stac-api-validator \
115
+ stac-api-validator \
108
116
--root-url https://cmr.earthdata.nasa.gov/stac/LARC_ASDC \
109
117
--conformance core --conformance item-search --conformance features
110
118
```
You can’t perform that action at this time.
0 commit comments