https://github.com/actinia-org/actinia-stac-plugin
Plugin for actinia to read STAC catalogs and retrieve data for processing
https://github.com/actinia-org/actinia-stac-plugin
actinia actinia-plugin hacktoberfest stac
Last synced: 5 months ago
JSON representation
Plugin for actinia to read STAC catalogs and retrieve data for processing
- Host: GitHub
- URL: https://github.com/actinia-org/actinia-stac-plugin
- Owner: actinia-org
- License: gpl-3.0
- Created: 2021-09-21T08:18:20.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-12-13T15:50:33.000Z (6 months ago)
- Last Synced: 2025-12-14T05:56:46.557Z (6 months ago)
- Topics: actinia, actinia-plugin, hacktoberfest, stac
- Language: Python
- Homepage:
- Size: 580 KB
- Stars: 5
- Watchers: 5
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# actinia-stac-plugin
You can run actinia-stac-plugin as actinia-core plugin.
## Installation
For installation or DEV setup, see docker/README.md.
## DEV notes
### Build
__insprired by https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/__
to create a shippable wheel, run
```bash
pip3 install --upgrade pip pep517
python3 -m pep517.build .
```
#### Versioning
https://semver.org/ (MAJOR.MINOR.PATCH)
#### Logging
in any module, import `from actinia_stac_plugin.resources.logging import log` and call logger with `log.info("my info i want to log")`