Skip to content

Commit d333c44

Browse files
authored
Merge pull request #189 from siapy/fix
feat: implementation of spectral images base class
2 parents a9d9a0c + e3ad547 commit d333c44

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1544
-638
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
* text=auto
2-
tests/data/* filter=lfs diff=lfs merge=lfs -text

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
23-
with:
24-
lfs: true # This option ensures that Git LFS files are checked out
2523
- name: Setup PDM
2624
uses: pdm-project/setup-pdm@v4
2725
with:

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ venv
1313
.history
1414
site
1515
dist
16-
tests/data
16+
tests/data/*
1717
docs/examples/data/*
18-
!docs/examples/data/.gitkeep
18+
!.gitkeep

.pre-commit-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ repos:
1919
- id: ruff
2020
args:
2121
- --fix
22+
- --config=pyproject.toml
23+
files: ^(siapy|tests)/
2224
- id: ruff-format
2325
- repo: https://github.com/gitleaks/gitleaks
2426
rev: v8.24.0

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ serve-docs:
6464
version:
6565
python -c "import siapy; print(siapy.__version__)"
6666

67+
.PHONY: compress-data ## Compress the data files
68+
compress-data:
69+
./scripts/compress-data.sh $(version)
70+
6771
.PHONY: help ## Display this message
6872
help:
6973
@grep -E \

docs/api/entities/images.md

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
::: siapy.entities.images.interfaces
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
::: siapy.entities.images.rasterio_lib
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
::: siapy.entities.images.spectral_lib
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
::: siapy.entities.images.spimage

0 commit comments

Comments
 (0)