Skip to content

Commit fac7fb3

Browse files
Update HTTPS links to cf-plot documentation to new home in recipes
Used equivalent find and sed command to previous commit.
1 parent 88d8833 commit fac7fb3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/source/recipes/plot_12_recipe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@
7777
# - `plt.suptitle <https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.suptitle.html>`_
7878
# is used to add a title for the whole figure;
7979
# - the subplots for plotting are selected using
80-
# `cfplot.gpos <https://ajheaps.github.io/cf-plot/gpos.html>`_ after which
81-
# `cfplot.mapset <https://ajheaps.github.io/cf-plot/mapset.html>`_ is used to
80+
# `cfplot.gpos <https://ncas-cms.github.io/cf-plot/build/gpos.html>`_ after which
81+
# `cfplot.mapset <https://ncas-cms.github.io/cf-plot/build/mapset.html>`_ is used to
8282
# set the map limits and resolution for the subplots;
8383
# - and as cf-plot stores the plot in a plot object with the name
8484
# ``cfp.plotvars.plot``, country borders are added using normal

docs/source/recipes/plot_13_recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
# - `cfplot.gopen <https://ncas-cms.github.io/cf-plot/build/gopen.html>`_ is used to
4242
# define the parts of the plot area, which is closed by
4343
# `cfplot.gclose <https://ncas-cms.github.io/cf-plot/build/gclose.html>`_;
44-
# - `cfplot.mapset <https://ajheaps.github.io/cf-plot/mapset.html>`_ is used to
44+
# - `cfplot.mapset <https://ncas-cms.github.io/cf-plot/build/mapset.html>`_ is used to
4545
# set the map limits and projection;
4646
# - `cfplot.setvars <https://ncas-cms.github.io/cf-plot/build/setvars.html>`_ is used to
4747
# set various attributes of the plot, like setting the land colour to grey;

docs/source/recipes/plot_14_recipe.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
# - `cfplot.gopen <https://ncas-cms.github.io/cf-plot/build/gopen.html>`_ is used to
3737
# define the parts of the plot area, which is closed by
3838
# `cfplot.gclose <https://ncas-cms.github.io/cf-plot/build/gclose.html>`_;
39-
# - `cfplot.mapset <https://ajheaps.github.io/cf-plot/mapset.html>`_ is used to
39+
# - `cfplot.mapset <https://ncas-cms.github.io/cf-plot/build/mapset.html>`_ is used to
4040
# set the map projection to North Polar Stereographic;
4141
# - `cfplot.setvars <https://ncas-cms.github.io/cf-plot/build/setvars.html>`_ is used to
4242
# set various attributes of the plot, like setting the thickness of the lines
@@ -45,7 +45,7 @@
4545
# lines representing the 200 hpa geopotential height values without filling
4646
# between the contour lines (``fill=False``) and no colour bar
4747
# (``colorbar=False``);
48-
# - `cfplot.levs <https://ajheaps.github.io/cf-plot/levs.html>`_ is used to
48+
# - `cfplot.levs <https://ncas-cms.github.io/cf-plot/build/levs.html>`_ is used to
4949
# specify two contour levels, 12000 and 12300 m, corresponding to the
5050
# approximate polar-front jet and subtropical jet respectively;
5151
# - `cfplot.con <https://ncas-cms.github.io/cf-plot/build/con.html>`_ is again used to
@@ -122,19 +122,19 @@
122122
# - `cfplot.gopen <https://ncas-cms.github.io/cf-plot/build/gopen.html>`_ is used to
123123
# define the parts of the plot area, which is closed by
124124
# `cfplot.gclose <https://ncas-cms.github.io/cf-plot/build/gclose.html>`_;
125-
# - `cfplot.mapset <https://ajheaps.github.io/cf-plot/mapset.html>`_ is used to
125+
# - `cfplot.mapset <https://ncas-cms.github.io/cf-plot/build/mapset.html>`_ is used to
126126
# set the map projection to Robinson;
127127
# - `cfplot.setvars <https://ncas-cms.github.io/cf-plot/build/setvars.html>`_ is used to
128128
# set various attributes of the plot, like setting the thickness of the lines
129129
# that represent continents and master title properties;
130-
# - `cfplot.levs <https://ajheaps.github.io/cf-plot/levs.html>`_ is used to
130+
# - `cfplot.levs <https://ncas-cms.github.io/cf-plot/build/levs.html>`_ is used to
131131
# specify the contour levels for temperature anomalies, starting from -2 to 2
132132
# with an interval of 0.5;
133133
# - `cfplot.cscale <https://ncas-cms.github.io/cf-plot/build/cscale.html>`_ is used to
134134
# choose one of the colour maps amongst many available;
135135
# - `cfplot.con <https://ncas-cms.github.io/cf-plot/build/con.html>`_ plots contour fill
136136
# of temperature anomalies without contour lines (``lines=False``);
137-
# - `cfplot.levs() <https://ajheaps.github.io/cf-plot/levs.html>`_ is used to
137+
# - `cfplot.levs() <https://ncas-cms.github.io/cf-plot/build/levs.html>`_ is used to
138138
# reset contour levels to default after which the steps to plot the contour
139139
# lines representing the 200 hpa geopotential height values, the approximate
140140
# polar-front jet and subtropical jet from Step 5 are repeated:

0 commit comments

Comments
 (0)