Skip to content
This repository was archived by the owner on May 11, 2026. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pip install .

### Requirements

All of `opticam_new`'s dependencies are available as Python packages via your preferred package manager, and should be handled automatically via `pip`. If you would prefer to install the dependencies using conda, you can should use provided [YAML file](environment.yml) to create your environment before `pip`-installing `opticam_new`.
All of `opticam_new`'s dependencies are available as Python packages via your preferred package manager, and should be handled automatically via `pip`. If you would prefer to install the dependencies via `conda`, use provided [YAML file](environment.yml) to set up your environment, and then install `opticam_new` via `pip` as described above.

## Getting Started

Expand Down
79 changes: 29 additions & 50 deletions docs/tutorials/applying_corrections.ipynb

Large diffs are not rendered by default.

259 changes: 130 additions & 129 deletions docs/tutorials/backgrounds.ipynb

Large diffs are not rendered by default.

111 changes: 50 additions & 61 deletions docs/tutorials/finders.ipynb

Large diffs are not rendered by default.

530 changes: 160 additions & 370 deletions docs/tutorials/local_backgrounds.ipynb

Large diffs are not rendered by default.

106 changes: 47 additions & 59 deletions docs/tutorials/reduction.ipynb

Large diffs are not rendered by default.

123 changes: 55 additions & 68 deletions docs/tutorials/timing_methods.ipynb

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions opticam/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

from opticam.background.global_background import BaseBackground, DefaultBackground
from opticam.background.local_background import BaseLocalBackground, DefaultLocalBackground
from opticam.finders import DefaultFinder
from opticam.reducer import Reducer
from opticam.analysis.differential_photometer import DifferentialPhotometer
from opticam.photometers import SimplePhotometer, OptimalPhotometer
from opticam.correctors.flat_field_corrector import FlatFieldCorrector
from opticam.analysis.analyzer import Analyzer
from opticam.utils.generate import generate_flats, generate_observations, generate_gappy_observations
from opticam.utils.data_checks import check_data
8 changes: 4 additions & 4 deletions opticam_new/align.py → opticam/align.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
from scipy.spatial.distance import cdist
from skimage.transform import SimilarityTransform, warp

from opticam_new.background.global_background import BaseBackground
from opticam_new.correctors.flat_field_corrector import FlatFieldCorrector
from opticam_new.finders import DefaultFinder, get_source_coords_from_image
from opticam_new.utils.fits_handlers import get_data
from opticam.background.global_background import BaseBackground
from opticam.correctors.flat_field_corrector import FlatFieldCorrector
from opticam.finders import DefaultFinder, get_source_coords_from_image
from opticam.utils.fits_handlers import get_data


def find_translation(
Expand Down
Loading