Axel Donath
Axel Donath
This PR addresses issue #651 and includes the following changes: - Implement new `NbLinkGallery` class and `nblinkgallery` directive - Implement `GalleryLinks` node - Adapt `doctree_resolve` to re-use the `GalleryNode` for...
We use the `.. nbgallery::` directive in the documentation of the Gammapy project to include tutorial notebooks in the normal documentation (https://docs.gammapy.org/0.20.1/tutorials/index.html). This feature works great and adds a lot...
We already have the `Parameter.interp` property which is used to compute the parameter grid for stat profiles. It would be nice to use the same information to actually scale the...
CTA released a document describing best practices for data visualisation in a way friendly to color-blind people: https://www.cta-observatory.org/wp-content/uploads/2020/10/CTA_ColourBlindness_BestPractices2.pdf We should evaluate and adapt our default visualisations in Gammapy to follow...
In #3344 @Bultako added a first version of the `CITATION.cff` file. In #3604 I added a little helper script to help maintaining the file and keep it in sync with...
The Gammapy code project should have a code of conduct. See e.g.: - https://www.python.org/psf/conduct/ - https://www.astropy.org/code_of_conduct.html - https://sunpy.org/coc My proposal would be that we just add it to the Gammapy...
Once we enter the new v1.0 development workflow we should also take the chance and rename the existing `master` branch to `main`. I think there is no need for any...
**Gammapy version** v0.19 **Bug description** To compute the kernel for the TS map computation the exposure at the center of the map is used. However this can fail, when the...
In Gammapy we have many places where we forward keywords to other methods like: ```python3 @classmethod def from_something(cls, something, **kwargs): # some code return cls(..., **kwargs) ``` There are many...
The Astropy affiliated package template now uses `tox`. We should update Gammapy to use it.