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

Cube Generator #33

Merged
merged 6 commits into from
Dec 23, 2020
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
8 changes: 5 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
name = "HCIToolbox"
uuid = "b6cd55e5-4d02-4e12-b82c-005f67e784bf"
authors = ["Miles Lucas <[email protected]>"]
version = "0.4.4"
version = "0.5.0"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
CoordinateTransformations = "150eb455-5306-5404-9cee-2592286d6298"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
ImageFiltering = "6a3955dd-da59-5b1f-98d4-e7296123deb5"
ImageTransformations = "02fcd773-0e25-5acc-982a-7f6622650795"
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
PSFModels = "9ba017d1-7760-46cd-84a3-1e79e9ae9ddc"
PaddedViews = "5432bcbf-9aad-5242-b902-cca2824c8663"
Photometry = "af68cb61-81ac-52ed-8703-edc140936be4"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
Rotations = "6038ab10-8711-5258-84ad-4b1120ba62dc"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Expand All @@ -24,12 +25,13 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Compat = "2.2, 3.8"
CoordinateTransformations = "0.5, 0.6"
Distributions = "0.22, 0.23, 0.24"
FillArrays = "0.6, 0.7, 0.8, 0.9, 0.10"
ImageFiltering = "0.6"
ImageTransformations = "0.8"
Interpolations = "0.12, 0.13"
PSFModels = "0.1"
PaddedViews = "0.5"
Photometry = "0.7"
Reexport = "0.2"
Rotations = "1"
SpecialFunctions = "0.10, 1"
StaticArrays = "0.12, 1.0"
Expand Down
4 changes: 4 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
HCIDatasets = "1893dc6a-5236-4cb8-aa54-62ea411c10cd"
PSFModels = "9ba017d1-7760-46cd-84a3-1e79e9ae9ddc"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
Documenter = "0.26"
HCIDatasets = "0.2"
PSFModels = "0.1"
6 changes: 1 addition & 5 deletions docs/src/inject.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,5 @@ Pages = ["inject.md"]
```@docs
inject
inject!
construct
Kernels
Kernels.Gaussian
Kernels.AiryDisk
Kernels.Moffat
CubeGenerator
```
6 changes: 4 additions & 2 deletions src/HCIToolbox.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export derotate,
mask_annulus,
normalize_par_angles,
normalize_par_angles!,
CubeGenerator,
inject,
inject!,
scale,
Expand All @@ -28,10 +29,12 @@ export derotate,
MultiAnnulusView,
eachannulus,
inverse!,
inverse
inverse,
Polar

# Utilities for dealing with cubes like derotating and median combining
include("morphology.jl")
include("geometry/geometry.jl")
include("inject.jl")

# Utilities for mask design
Expand All @@ -40,6 +43,5 @@ include("angles.jl")

include("scaling.jl")

include("geometry/geometry.jl")

end
Loading