-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Scripts fetches and converts ALMA config files into OSKAR files 📟 * Latest configs for ALMA cycles 9, 10, 11 🚑 * Resolved type conflict (was complained about by mypy) 😕 * Updated documentation as suggested in comments to PR #634 ♍ * Adding link to Karabo workshop on Renkulab 📃 * Section 'Show telescope config' belongs to basic examples * Revert "Section 'Show telescope config' belongs to basic examples ". The changes were made in the wrong file. This reverts commit 50e885f. * Moved section up because it's of general interest and not only SRC related. 🍕 * Fixed more formatting issues 📁 * Added module descriptions 👶 * Fixed formatting issues 👅 * Rewritten docu for imaging module 🚻 * Added a link in README and documentation to the Karabo Workshop on Renkulab ⚡ * Added note to limited server resources on Renkulab.
- Loading branch information
Showing
21 changed files
with
479 additions
and
294 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
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
karabo.imaging.imager_base | ||
========================== | ||
|
||
Overview | ||
------------ | ||
This package defines base classes from which the | ||
specialised image classes are derived. | ||
|
||
|
||
Classes | ||
------- | ||
|
||
.. autoclass:: karabo.imaging.imager_base.DirtyImagerConfig | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: | ||
|
||
.. autoclass:: karabo.imaging.imager_base.DirtyImager | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: | ||
|
||
.. autoclass:: karabo.imaging.imager_base.DirtyImagerConfig | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: | ||
|
||
.. autoclass:: karabo.imaging.imager_base.ImageCleanerConfig | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: | ||
|
||
.. autoclass:: karabo.imaging.imager_base.ImageCleaner | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
karabo.imaging.image | ||
==================== | ||
|
||
Overview | ||
------------ | ||
This package provides the Image base class. It is used in the Karabo | ||
package to store and manipulate image data. | ||
|
||
|
||
Classes | ||
------- | ||
|
||
.. autoclass:: karabo.imaging.image.Image | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: _update_header_after_resize | ||
|
||
.. autoclass:: karabo.imaging.image.ImageMosaicker | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: _update_header_after_resize | ||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
karabo.imaging.imager_oskar | ||
================= | ||
|
||
Overview | ||
------------ | ||
This package summerizes tools and functions to be used with the imager | ||
from the OSKAR backend. This backend does not offer functionality to | ||
calculate a cleaned image. You must use RASCIL or WSClean. | ||
|
||
|
||
Classes | ||
------- | ||
|
||
.. autoclass:: karabo.imaging.imager_oskar.OskarDirtyImagerConfig | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: | ||
|
||
|
||
.. autoclass:: karabo.imaging.imager_oskar.OskarDirtyImager | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
karabo.imaging.imager_rascil | ||
============================ | ||
|
||
Overview | ||
------------ | ||
This package summerizes tools and functions to be used with the imager | ||
from the RASCIL backend. This backend allows both calculating a dirty | ||
images and a cleaned image, respoectivley. | ||
|
||
|
||
Classes | ||
------- | ||
|
||
.. autoclass:: karabo.imaging.imager_rascil.RascilDirtyImagerConfig | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: | ||
|
||
|
||
.. autoclass:: karabo.imaging.imager_rascil.RascilDirtyImager | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: _update_header_after_resize | ||
|
||
|
||
.. autoclass:: karabo.imaging.imager_rascil.RascilImageCleanerConfig | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: _update_header_after_resize | ||
|
||
|
||
.. autoclass:: karabo.imaging.imager_rascil.RascilImageCleaner | ||
:members: | ||
:special-members: __init__ | ||
:exclude-members: _compute |
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
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
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
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
Oops, something went wrong.