-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
205 changed files
with
59,655 additions
and
59,642 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
.envr | ||
__pycache__ | ||
*.swp | ||
.eggs/ | ||
autoarray.egg-info/ | ||
*cache | ||
*pytest_cache | ||
build// | ||
build/ | ||
dist/ | ||
.idea/ | ||
test_files | ||
test_autoarray/unit/instruments/files/acs/acs_ccd.fits | ||
test_autoarray/unit/plot/files/plotter/fits/frame.fits | ||
test_autoarray/unit/structures/files/array.fits | ||
test_autoarray/unit/structures/files/frame.fits | ||
test_autoarray/unit/structures/files/kernel.fits | ||
test_autoarray/unit/structures/grids/files/grid/grid.fits | ||
.envr | ||
__pycache__ | ||
*.swp | ||
.eggs/ | ||
autoarray.egg-info/ | ||
*cache | ||
*pytest_cache | ||
build// | ||
build/ | ||
dist/ | ||
.idea/ | ||
test_files | ||
test_autoarray/unit/instruments/files/acs/acs_ccd.fits | ||
test_autoarray/unit/plot/files/plotter/fits/frame.fits | ||
test_autoarray/unit/structures/files/array.fits | ||
test_autoarray/unit/structures/files/frame.fits | ||
test_autoarray/unit/structures/files/kernel.fits | ||
test_autoarray/unit/structures/grids/files/grid/grid.fits |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2019 James Nightingale | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
MIT License | ||
Copyright (c) 2019 James Nightingale | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# MANIFEST.in | ||
include requirements.txt | ||
|
||
recursive-include data * | ||
# MANIFEST.in | ||
include requirements.txt | ||
recursive-include data * | ||
recursive-include autoarray/config * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# PyAutoArray | ||
A library for manipulating arrays within the PyAuto software framework | ||
# PyAutoArray | ||
A library for manipulating arrays within the PyAuto software framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
from autoarray.structures.grids.coordinates import GridCoordinates | ||
from autoarray.structures.grids.coordinates import GridCoordinatesUniform | ||
from autoarray.structures.grids.iterate import GridIterate | ||
from . import exc | ||
from . import plot | ||
from . import util | ||
from . import mock | ||
from .dataset import preprocess | ||
from .dataset.imaging import Imaging | ||
from .dataset.imaging import MaskedImaging | ||
from .dataset.imaging import SettingsMaskedImaging | ||
from .dataset.imaging import SimulatorImaging | ||
from .dataset.interferometer import Interferometer | ||
from .dataset.interferometer import MaskedInterferometer | ||
from .dataset.interferometer import SettingsMaskedInterferometer | ||
from .dataset.interferometer import SimulatorInterferometer | ||
from .fit.fit import FitImaging | ||
from .fit.fit import FitInterferometer | ||
from .instruments import acs | ||
from .instruments import euclid | ||
from .inversion import pixelizations as pix | ||
from .inversion import regularization as reg | ||
from .inversion.inversions import SettingsInversion | ||
from .inversion.inversions import inversion as Inversion | ||
from .inversion.mappers import mapper as Mapper | ||
from .inversion.pixelizations import SettingsPixelization | ||
from .mask.mask_1d import Mask1D | ||
from .mask.mask_2d import Mask2D | ||
from .mock import mock | ||
from .mock import fixtures | ||
from .operators.convolver import Convolver | ||
from .operators.convolver import Convolver | ||
from .operators.transformer import TransformerDFT | ||
from .operators.transformer import TransformerNUFFT | ||
from .structures.arrays import Array | ||
from .structures.arrays import Values | ||
from .structures.arrays.abstract_array import ExposureInfo | ||
from .structures.frames import Frame | ||
from .structures.frames.abstract_frame import Scans | ||
from .structures.grids import Grid | ||
from .structures.grids import GridInterpolate | ||
from .structures.grids import GridRectangular | ||
from .structures.grids import GridVoronoi | ||
from .structures.grids import GridCoordinates | ||
from .structures.grids import GridCoordinatesUniform | ||
from .structures.lines.lines import Line | ||
from .structures.lines.lines import LineCollection | ||
from .structures.region import Region | ||
from .structures.kernel import Kernel | ||
from .structures.region import Region | ||
from .structures.visibilities import Visibilities | ||
from .structures.visibilities import VisibilitiesNoiseMap | ||
|
||
from autoconf import conf | ||
|
||
conf.instance.register(__file__) | ||
|
||
__version__ = "0.14.15" | ||
from autoarray.structures.grids.coordinates import GridCoordinates | ||
from autoarray.structures.grids.coordinates import GridCoordinatesUniform | ||
from autoarray.structures.grids.iterate import GridIterate | ||
from . import exc | ||
from . import plot | ||
from . import util | ||
from . import mock | ||
from .dataset import preprocess | ||
from .dataset.imaging import Imaging | ||
from .dataset.imaging import MaskedImaging | ||
from .dataset.imaging import SettingsMaskedImaging | ||
from .dataset.imaging import SimulatorImaging | ||
from .dataset.interferometer import Interferometer | ||
from .dataset.interferometer import MaskedInterferometer | ||
from .dataset.interferometer import SettingsMaskedInterferometer | ||
from .dataset.interferometer import SimulatorInterferometer | ||
from .fit.fit import FitImaging | ||
from .fit.fit import FitInterferometer | ||
from .instruments import acs | ||
from .instruments import euclid | ||
from .inversion import pixelizations as pix | ||
from .inversion import regularization as reg | ||
from .inversion.inversions import SettingsInversion | ||
from .inversion.inversions import inversion as Inversion | ||
from .inversion.mappers import mapper as Mapper | ||
from .inversion.pixelizations import SettingsPixelization | ||
from .mask.mask_1d import Mask1D | ||
from .mask.mask_2d import Mask2D | ||
from .mock import mock | ||
from .mock import fixtures | ||
from .operators.convolver import Convolver | ||
from .operators.convolver import Convolver | ||
from .operators.transformer import TransformerDFT | ||
from .operators.transformer import TransformerNUFFT | ||
from .structures.arrays import Array | ||
from .structures.arrays import Values | ||
from .structures.arrays.abstract_array import ExposureInfo | ||
from .structures.frames import Frame | ||
from .structures.frames.abstract_frame import Scans | ||
from .structures.grids import Grid | ||
from .structures.grids import GridInterpolate | ||
from .structures.grids import GridRectangular | ||
from .structures.grids import GridVoronoi | ||
from .structures.grids import GridCoordinates | ||
from .structures.grids import GridCoordinatesUniform | ||
from .structures.lines.lines import Line | ||
from .structures.lines.lines import LineCollection | ||
from .structures.region import Region | ||
from .structures.kernel import Kernel | ||
from .structures.region import Region | ||
from .structures.visibilities import Visibilities | ||
from .structures.visibilities import VisibilitiesNoiseMap | ||
|
||
from autoconf import conf | ||
|
||
conf.instance.register(__file__) | ||
|
||
__version__ = "0.14.15" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[fits] | ||
flip_for_ds9=True | ||
|
||
[numba] | ||
nopython=True | ||
cache=True | ||
parallel=False | ||
|
||
[inversion] | ||
[fits] | ||
flip_for_ds9=True | ||
|
||
[numba] | ||
nopython=True | ||
cache=True | ||
parallel=False | ||
|
||
[inversion] | ||
interpolated_grid_shape=image_grid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[function_name] | ||
[function_name] | ||
class_name=True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[function_name] | ||
[function_name] | ||
class_name=1e-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
[dataset] | ||
grid=grid | ||
grid_inversion=inv | ||
sub_size=sub | ||
fractional_accuracy=facc | ||
pixel_scales_interp=interp | ||
signal_to_noise_limit=snr | ||
|
||
[imaging] | ||
imaging=imaging | ||
bin_up_factor=bin | ||
psf_shape=psf | ||
|
||
[interferometer] | ||
interferometer=interferometer | ||
TransformerDFT=dft | ||
TransformerNUFFT=nufft | ||
|
||
[pixelization] | ||
pixelization=pix | ||
use_border=use_border | ||
no_border=no_border | ||
stochastic=stochastic | ||
not_stochastic= | ||
|
||
[inversion] | ||
inversion=inv | ||
use_matrices=mat | ||
use_linear_operators=lop | ||
[dataset] | ||
grid=grid | ||
grid_inversion=inv | ||
sub_size=sub | ||
fractional_accuracy=facc | ||
pixel_scales_interp=interp | ||
signal_to_noise_limit=snr | ||
|
||
[imaging] | ||
imaging=imaging | ||
bin_up_factor=bin | ||
psf_shape=psf | ||
|
||
[interferometer] | ||
interferometer=interferometer | ||
TransformerDFT=dft | ||
TransformerNUFFT=nufft | ||
|
||
[pixelization] | ||
pixelization=pix | ||
use_border=use_border | ||
no_border=no_border | ||
stochastic=stochastic | ||
not_stochastic= | ||
|
||
[inversion] | ||
inversion=inv | ||
use_matrices=mat | ||
use_linear_operators=lop | ||
use_preconditioner=precon |
Oops, something went wrong.