Re: [typhon] [s-c-rt] r9734 - in typhon/trunk: . typhon

2016-03-19 Thread Gerrit Holl
Hi, On 29 February 2016 at 07:10, artswebserv...@gmail.com wrote: > Log: > * typhon/__init__.py: > > Add revision to version number for development releases. $Revision$ in __init__.py won't work, regrettably. This is only updated when __init__.py is updated, which

Re: [typhon] [s-c-rt] r10280 - in typhon/trunk: . typhon/physics typhon/physics/tests

2017-02-27 Thread Gerrit Holl
Hi, On 27 February 2017 at 06:38, Oliver Lemke <oliver.le...@uni-hamburg.de> wrote: > Hi Gerrit, > >> On 6 Feb 2017, at 15:43, Gerrit Holl <g.h...@reading.ac.uk> wrote: >> >> On 6 February 2017 at 14:40, Gerrit Holl <g.h...@reading.ac.uk> wrote: &g

Re: [typhon] [s-c-rt] r10375 - in typhon/trunk: . typhon/datasets typhon/physics/units typhon/utils

2017-03-28 Thread Gerrit Holl
On 28 March 2017 at 07:03, Oliver Lemke wrote: > Hi Gerrit, > > While having the possibility to use UTF-8 characters in variable names in > Python is certainly a neat feature, I have concerns about the usability and > maintainability of such code. I hope you agree

Re: [typhon] [s-c-rt] r10567 - in typhon/trunk: . typhon/arts typhon/arts/tests

2017-07-23 Thread Gerrit Holl
Hi, On 23 July 2017 at 21:01, artswebserv...@gmail.com wrote: > * typhon/arts/tests/test_griddedfield.py: > > - Added method to test this new functionality. Unfortunately, I'm not > sure how to run the test suite, as 'python3.6 setup.py test' ran 0 > tests. I couldn't

[typhon] Conditional Python 3.6 code

2017-06-08 Thread Gerrit Holl
Hi, is it acceptable within typhon to add conditional Python 3.6 code? Something like: if sys.version_info > (3, 6): import enum class AutoFlag(enum.IntFlag): """Enumerator for bit flags This is a enum.IntFlag subclass that can be used with enum.auto() to

[typhon] typhon and scipy 1.0.0.

2017-09-25 Thread Gerrit Holl
Hi, scipy 1.0.0 is due out soon. It removes the deprecated function scipy.stats.betai, see https://scipy.github.io/devdocs/release.1.0.0.html#backwards-incompatible-changes . That breaks the function that I contributed, scipy.stats.corrcoef. It's up to me to fix it but as I took this code from

[typhon] OEM: scipy.linalg.inv vs. numpy.linalg.inv

2017-08-22 Thread Gerrit Holl
Hi, I need to adapt typhon.oem.retrieval_gain_matrix to allow broadcasting. That would require two changes: - replace every occurrence of .T by .swapaxes(-1, -2) - replace scipy.linalg.inv by numpy.linalg.inv, as the former does not broadcast but the latter does. The former is fully backward

Re: [typhon] OEM: scipy.linalg.inv vs. numpy.linalg.inv

2017-08-22 Thread Gerrit Holl
On 22 August 2017 at 12:59, Oliver Lemke wrote: > Hi Gerrit, > > Why is it necessary to replace .T with .swapaxes? Could you give an example > were the former fails but the latter works? K.T swaps indexes 0 and 1, but matmul broadcasts along indices -1 and -2, so

Re: [typhon] New release 0.4.0 available

2017-08-30 Thread Gerrit Holl
Hi, On 30 August 2017 at 12:45, Oliver Lemke wrote: > In [1]: import typhon > cannot connect to X server > > ...and your ipython session will close. This is an issue with matplotlib, not > typhon. The correct workaround is to tell matplotlib to use a non-ui backend

Re: [typhon] typhon release?

2018-06-13 Thread Gerrit Holl
On 13 June 2018 at 10:42, Oliver Lemke wrote: > > Very soon, it is about time indeed. Just wanted to wait till the collocation > framework is in good shape. > > Next week is pretty busy here, so let's aim for week 26? > > John, do you think we/you are ready for this? :-) > > Anything else we

[typhon] typhon release?

2018-06-13 Thread Gerrit Holl
Hi, it's been more than 500 commits and 6 months since typhon 0.5.0. My FCDR_HIRS code depends on a lot of features and bugfixes added in the past 6 months. I imagine it's the same in other parts of typhon. When is it time for a new typhon release? Gerrit.

Re: [typhon] citing typhon

2018-02-08 Thread Gerrit Holl
Hi, On 8 February 2018 at 06:51, Oliver Lemke wrote: >> Are there any guidelines on how to cite typhon? I couldn't find >> anything in the documentation. >> >> I thought that maybe its also a good idea just to have a bibtex entry >> in the README.md on github. > >

[typhon] wiki?

2018-01-02 Thread Gerrit Holl
Hi, other github projects I'm on have a wiki link in the top bar, but typhon has no such link. Does anyone know why? When I navigate to https://github.com/atmtools/typhon/wiki I'm simply redirected back to https://github.com/atmtools/typhon I thought a wiki page may be a good place to collect

[typhon] release 0.6.1?

2019-01-15 Thread Gerrit Holl
Hi, shall we have a typhon release soon? I'm handing over my FCDR_HIRS code, which currently depends on typhon master, and which would be easier for users to install and use if it depended on a released version of typhon. typhon 0.6.1? Gerrit. ___

[typhon] controlling autosummary methods?

2019-01-14 Thread Gerrit Holl
Hi, is there any way to control what methods are being shown with the autosummary method documentation generation? With regular autoclass we can control whether inherited methods should be documented or not, but our autosummary template seems to always look through all methods, for example, in