Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,13 @@ The quickest option is **not to install** anything but try the binder demo above

If do you want to install the code on your own machine, we recommend using `miniconda` and `mamba`. Create a separate virtual environment and install the code from source. More details on how to do that are in the [Installation Instructions](https://underworldcode.github.io/underworld3/development/_quickstart/Installation.html)

## References
## References and Archives

The canonical releases of the code can be found at [zenodo.org](https://doi.org/10.5281/zenodo.16810746).

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.16810747.svg)](https://doi.org/10.5281/zenodo.16810746)

There is a [publication in the Journal of Open Source Software](https://joss.theoj.org/papers/4f7a1ed76bde560968c246fa8eff778d)
([doi:10.21105/joss.07831](https://doi.org/10.21105/joss.07831)) that can be cited when using the software.

[![status](https://joss.theoj.org/papers/4f7a1ed76bde560968c246fa8eff778d/status.svg)](https://joss.theoj.org/papers/4f7a1ed76bde560968c246fa8eff778d)
4 changes: 2 additions & 2 deletions src/underworld3/ckdtree.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ cdef class KDTree:
i = i.reshape(-1)

if sqr_dists:
return numpy.sqrt(d), i
else:
return d, i
else:
return numpy.sqrt(d), i


## A general point-to-point rbf interpolator here
Expand Down