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
Copy file name to clipboardExpand all lines: README.md
+41-8Lines changed: 41 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,22 +7,55 @@ When started, it does the following:
7
7
- Creates a STAC item with assets. The assets `href` is based on the given URL.
8
8
- Adds the STAC item to a STAC catalog. If an item with the same id already exists, it will be updated.
9
9
10
+
## Installation
11
+
12
+
Install the package using pip:
13
+
14
+
```bash
15
+
# Install from source
16
+
pip install .
17
+
18
+
# Or install in editable mode for development
19
+
pip install -e .
20
+
```
21
+
22
+
After installation, the `eopf-stac` command will be available in your environment.
23
+
10
24
## Usage
11
25
12
26
The EOPF product must be referenced by an URL which must be provided as a command-line argument. Only `http(s)://`, `s3://` and `file://` URLs are supported. For debugging, a combination of the `--dry-run` and `--debug` option can be used to see the created STAC item in the logs without inserting it into a catalog.
0 commit comments