Skip to content

Commit

Permalink
Merge pull request #9 from opendatacube/some_reworks
Browse files Browse the repository at this point in the history
Improving logic and extensibility
  • Loading branch information
Ariana-B authored Sep 18, 2023
2 parents 4a5ed4e + d8f8bce commit fc62285
Show file tree
Hide file tree
Showing 57 changed files with 2,538 additions and 5,552 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ repos:
- id: check-merge-conflict
- id: check-symlinks # Symlinks that don't point to anything?
- id: check-yaml # Check Yaml file syntax
args: [--allow-multiple-documents]
- id: debug-statements # Avoid commiting debug/breakpoints
- id: end-of-file-fixer # Normalise on exactly one newline
- id: fix-byte-order-marker # No UTF-8 byte order marks
Expand Down
15 changes: 5 additions & 10 deletions eo3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,15 @@
from ._version import get_versions
from .assemble import IncompleteDatasetError
from .images import GridSpec, ValidDataMethod
from .model import Eo3DatasetDocBase
from .properties import Eo3DictBase
from .fields import Range
from .model import DatasetMetadata

REPO_URL = "https://github.com/GeoscienceAustralia/eo-datasets.git"
REPO_URL = "https://github.com/opendatacube/eo3.git"

__version__ = get_versions()["version"]
del get_versions

__all__ = (
"Eo3DatasetDocBase",
"Eo3DictBase",
"GridSpec",
"IncompleteDatasetError",
"DatasetMetadata",
"Range",
"REPO_URL",
"ValidDataMethod",
"__version__",
)
146 changes: 0 additions & 146 deletions eo3/assemble.py

This file was deleted.

Loading

0 comments on commit fc62285

Please sign in to comment.