Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementation of the resample algorithm step #30

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion iris_pipeline/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ class UnsupportedPythonError(Exception):
from .parse_subarray_map import *
from .merge_subarrays import *
from .assign_wcs import *
from .resample import *

from .datamodels import monkeypatch_jwst_datamodels
from .datamodels import *
3 changes: 2 additions & 1 deletion iris_pipeline/datamodels/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@


__all__ = [
"monkeypatch_jwst_datamodels",
"IRISImageModel",
"TMTRampModel",
"TMTMaskModel",
Expand All @@ -25,7 +26,7 @@
"TMTReferenceFileModel",
]

_all_models = __all__
_all_models = __all__[1:]
_local_dict = locals()
_defined_models = {k: _local_dict[k] for k in _all_models}

Expand Down
4 changes: 4 additions & 0 deletions iris_pipeline/resample/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from .resample_step import ResampleStep
from .resample_spec_step import ResampleSpecStep

__all__ = ['ResampleStep', 'ResampleSpecStep']
Loading