Skip to content

Commit a204a24

Browse files
authored
Merge pull request #160 from rcomer/scitools-docs
DOC: update external links
2 parents c4a21a8 + 314ad32 commit a204a24

File tree

10 files changed

+29
-29
lines changed

10 files changed

+29
-29
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
eofs - EOF analysis in Python
22
=============================
33

4-
[![DOI (paper)](https://img.shields.io/badge/DOI%20%28paper%29-10.5334%2Fjors.122-blue.svg)](http://doi.org/10.5334/jors.122) [![DOI (latest release)](https://zenodo.org/badge/20448/ajdawson/eofs.svg)](https://zenodo.org/badge/latestdoi/20448/ajdawson/eofs)
4+
[![DOI (paper)](https://img.shields.io/badge/DOI%20%28paper%29-10.5334%2Fjors.122-blue.svg)](https://doi.org/10.5334/jors.122) [![DOI (latest release)](https://zenodo.org/badge/20448/ajdawson/eofs.svg)](https://zenodo.org/badge/latestdoi/20448/ajdawson/eofs)
55

66

77
Overview
@@ -22,28 +22,28 @@ Requirements
2222
------------
2323

2424
eofs only requires the NumPy package (and setuptools to install).
25-
In order to use the meta-data preserving interfaces one (or both) of [iris](http://scitools.org.uk/iris) or [xarray](http://xarray.pydata.org) is needed.
25+
In order to use the meta-data preserving interfaces one (or both) of [iris](https://scitools-iris.readthedocs.io) or [xarray](https://docs.xarray.dev/en/stable) is needed.
2626

2727

2828
Documentation
2929
-------------
3030

31-
Documentation is available [online](http://ajdawson.github.io/eofs).
31+
Documentation is available [online](https://ajdawson.github.io/eofs).
3232
The package docstrings are also very complete and can be used as a source of reference when working interactively.
3333

3434

3535
Citation
3636
--------
3737

38-
If you use eofs in published research, please cite it by referencing the [peer-reviewed paper](http://doi.org/10.5334/jors.122).
39-
You can additionally cite the [Zenodo DOI](http://dx.doi.org/10.5281/zenodo.46871) if you need to cite a particular version (but please also cite the paper, it helps me justify my time working on this and similar projects).
38+
If you use eofs in published research, please cite it by referencing the [peer-reviewed paper](https://doi.org/10.5334/jors.122).
39+
You can additionally cite the [Zenodo DOI](https://dx.doi.org/10.5281/zenodo.46871) if you need to cite a particular version (but please also cite the paper, it helps me justify my time working on this and similar projects).
4040

4141

4242
Installation
4343
------------
4444

4545
eofs works on Python 3 on Linux, Windows or MacOS.
46-
The easiest way to install eofs is by using [conda](http://conda.pydata.org/docs/) or pip:
46+
The easiest way to install eofs is by using [conda](https://docs.conda.io/en/latest/) or pip:
4747

4848
conda install -c conda-forge eofs
4949

doc/_themes/sphinx13/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
{% block extrahead %}
19-
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,700'
19+
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300,400,700'
2020
rel='stylesheet' type='text/css' />
2121
{{ super() }}
2222
{%- if not embedded %}

doc/devguide/testing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ This will run the tests on the version of `eofs` you just installed.
4040

4141
.. _pytest: https://docs.pytest.org/en/latest/
4242

43-
.. _iris: http://scitools.org.uk/iris
43+
.. _iris: https://scitools-iris.readthedocs.io
4444

45-
.. _xarray: http://xarray.pydata.org
45+
.. _xarray: https://docs.xarray.dev/en/stable

doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ If you would like to contribute code or documentation please see the :doc:`devgu
102102

103103
.. _dask: https://www.dask.org/
104104

105-
.. _iris: http://scitools.org.uk/iris
105+
.. _iris: https://scitools-iris.readthedocs.io
106106

107-
.. _xarray: http://xarray.pydata.org
107+
.. _xarray: https://docs.xarray.dev/en/stable
108108

109109
.. _numpy: https://numpy.org/
110110

examples/iris/hgt_example.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
77
Additional requirements for this example:
88
9-
* iris (http://scitools.org.uk/iris/)
10-
* matplotlib (http://matplotlib.org/)
11-
* cartopy (http://scitools.org.uk/cartopy/)
9+
* iris (https://scitools-iris.readthedocs.io/)
10+
* matplotlib (https://matplotlib.org/)
11+
* cartopy (https://cartopy.readthedocs.io/)
1212
1313
"""
1414
import warnings

examples/iris/sst_example.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
1111
Additional requirements for this example:
1212
13-
* iris (http://scitools.org.uk/iris/)
14-
* matplotlib (http://matplotlib.org/)
15-
* cartopy (http://scitools.org.uk/cartopy/)
13+
* iris (https://scitools-iris.readthedocs.io/)
14+
* matplotlib (https://matplotlib.org/)
15+
* cartopy (https://cartopy.readthedocs.io/)
1616
1717
"""
1818
import cartopy.crs as ccrs

examples/standard/hgt_example.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
77
Additional requirements for this example:
88
9-
* netCDF4 (http://unidata.github.io/netcdf4-python/)
10-
* matplotlib (http://matplotlib.org/)
11-
* cartopy (http://scitools.org.uk/cartopy/)
9+
* netCDF4 (https://unidata.github.io/netcdf4-python/)
10+
* matplotlib (https://matplotlib.org/)
11+
* cartopy (https://cartopy.readthedocs.io/)
1212
1313
"""
1414
import cartopy.crs as ccrs

examples/standard/sst_example.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
1111
Additional requirements for this example:
1212
13-
* netCDF4 (http://unidata.github.io/netcdf4-python/)
14-
* matplotlib (http://matplotlib.org/)
15-
* cartopy (http://scitools.org.uk/cartopy/)
13+
* netCDF4 (https://unidata.github.io/netcdf4-python/)
14+
* matplotlib (https://matplotlib.org/)
15+
* cartopy (https://cartopy.readthedocs.io/)
1616
1717
"""
1818
import cartopy.crs as ccrs

examples/xarray/hgt_example.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
77
Additional requirements for this example:
88
9-
* xarray (http://xarray.pydata.org)
10-
* matplotlib (http://matplotlib.org/)
11-
* cartopy (http://scitools.org.uk/cartopy/)
9+
* xarray (https://docs.xarray.dev/en/stable)
10+
* matplotlib (https://matplotlib.org/)
11+
* cartopy (https://cartopy.readthedocs.io/)
1212
1313
"""
1414
import cartopy.crs as ccrs

examples/xarray/sst_example.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
1111
Additional requirements for this example:
1212
13-
* xarray (http://xarray.pydata.org)
14-
* matplotlib (http://matplotlib.org/)
15-
* cartopy (http://scitools.org.uk/cartopy/)
13+
* xarray (https://docs.xarray.dev/en/stable)
14+
* matplotlib (https://matplotlib.org/)
15+
* cartopy (https://cartopy.readthedocs.io/)
1616
1717
"""
1818
import cartopy.crs as ccrs

0 commit comments

Comments
 (0)