Cora Schneck
Cora Schneck
With the updates to include `pyproject.toml` it appears like eofs is in transition from `versioneer` (where this issue arises from) to `setuptools_scm`. That should fix the pip install issue with...
Do you think it would still be useful to include the link within the Feature Request Issue Template? Seems like it would be handy in case anyone missed the alternative...
- [gc_aangle](https://www.ncl.ucar.edu/Document/Functions/Built-in/gc_aangle.shtml): Finds the acute angle between two great circles on the globe. - [gc_clkwise](https://www.ncl.ucar.edu/Document/Functions/Built-in/gc_clkwise.shtml): Tests clockwise/counterclockwise ordering of points on spherical polygon. - [gc_dangle](https://www.ncl.ucar.edu/Document/Functions/Built-in/gc_dangle.shtml): Finds the directed angle between...
Closed by https://github.com/NCAR/geocat-applications/issues/65 (additional information via [Project Pythia](https://github.com/ProjectPythia/great-circle-cookbook))
Decorators are a common method to validate input ``` def validate_user_input(func): def validate_wrapper(x, y): if x < 0: raise ValueError(f"x should be postive {func}") return func(x, y) return validate_wrapper @validate_user_input...
Will need to update applications [`delta_pressure` description](https://github.com/NCAR/geocat-applications/pull/200#issuecomment-2878088330) when this is updated in comp
Include links for #295 as external documentation > Currently to find geocat-comp functions that correspond to NCL functions, users have to search the -comp documentation. > It would be nice...
Look into housing as part of [geocat-application](https://github.com/NCAR/geocat-applications) with documentation/code examples/external links for NCL->Python transition document
164 Functions Flagged for `Built-In Python` or simple implementations that do not require full functional replication in GeoCAT. Good potential starting place for application guide ``` NCL Function | Python...
Recommended guide for wavelet analysis: [A Practical Guide to Wavelet Analysis by Christopher Torrence and Gilbert P. Compo (1998)](https://paos.colorado.edu/research/wavelets/bams_79_01_0061.pdf) Additional resources: - [Wavelets: a mathematical microscope](https://www.youtube.com/watch?v=jnxqHcObNK4&t=17s&ab_channel=ArtemKirsanov) - [Wavelets and Multiresolution...