Skip to content

Commit 65ca525

Browse files
committed
restructuring the main order of the book
1 parent 85b7ed6 commit 65ca525

14 files changed

+3036
-36
lines changed
File renamed without changes.

03_climate_data.qmd renamed to 04_climate_data.qmd

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,25 +45,25 @@ To work with **CDO** and **ncview** you will need to use the terminal command li
4545

4646
In your command line type:
4747

48-
- `cd OceanFrontsChange_Workshop2023/data/` (this will establish *data* as your primary directory)
48+
- `cd ESM_240/data/` (this will establish *data* as your primary directory)
4949

5050
If your are using Windows your desktop path should be located at `/mnt/c/`.
5151

52-
Because you have setting `OceanFrontsChange_Workshop2023/data/` as your directory in the terminal, we can use *ncview* to get a quick view of the front data
52+
Because you have setting `ESM_240/data/` as your directory in the terminal, we can use *ncview* to get a quick view of the front data
5353

5454
- type `ls -l` to see if the front data is in your directory.
55-
- to view the model with ncview, in the terminal type `ncview BOAonMUR_SWIO_Y2003-M1-D1.nc`.
55+
- to view the model with ncview, in the terminal type `ncview tos_Omon_GFDL-ESM4_ssp585_r1i1p1f1_gr_201501-203412.nc`.
5656

5757
We can check the file details using cdo. In the terminal type:
5858

59-
- `cdo -sinfov BOAonMUR_SWIO_Y2003-M1-D1.nc`
59+
- `cdo -sinfov tos_Omon_GFDL-ESM4_ssp585_r1i1p1f1_gr_201501-203412.nc`
6060

6161
The model details are:
6262

63-
- Variable: temp_gradient
64-
- Horizontal component: resolution 5001x3001
65-
- Vertical component: 1 level (i.e., depth)
66-
- Time component: 1 steps
63+
- Variable: tos (sea surface temperature)
64+
- Horizontal component: resolution 360x180
65+
- Vertical component: 1 level (i.e., surface)
66+
- Time component: 240 steps
6767

6868
## CDO extra functions
6969

File renamed without changes.
File renamed without changes.
File renamed without changes.

_quarto.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ book:
1818
- index.qmd
1919
- 01_preparation.qmd
2020
- 02_set_up.qmd
21-
- 03_climate_data.qmd
22-
- 04_ncRaster.qmd
23-
- 05_equalGrid.qmd
24-
- 06_climatePUs.qmd
25-
- 07_cmip6_models.qmd
21+
- 03_cmip6_models.qmd
22+
- 04_climate_data.qmd
23+
- 05_ncRaster.qmd
24+
- 06_equalGrid.qmd
25+
- 07_climatePUs.qmd
2626
- references.qmd
2727

2828
bibliography: references.bib

docs/01_preparation.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -140,32 +140,32 @@
140140
</li>
141141
<li class="sidebar-item">
142142
<div class="sidebar-item-container">
143-
<a href="./03_climate_data.html" class="sidebar-item-text sidebar-link">
144-
<span class="menu-text"><span class="chapter-number">3</span>&nbsp; <span class="chapter-title">Getting Started with Climate Data</span></span></a>
143+
<a href="./03_cmip6_models.html" class="sidebar-item-text sidebar-link">
144+
<span class="menu-text"><span class="chapter-number">3</span>&nbsp; <span class="chapter-title">CMIP6 models</span></span></a>
145145
</div>
146146
</li>
147147
<li class="sidebar-item">
148148
<div class="sidebar-item-container">
149-
<a href="./04_ncRaster.html" class="sidebar-item-text sidebar-link">
150-
<span class="menu-text"><span class="chapter-number">4</span>&nbsp; <span class="chapter-title">netCDF files in R: Raster, Spatial objects</span></span></a>
149+
<a href="./04_climate_data.html" class="sidebar-item-text sidebar-link">
150+
<span class="menu-text"><span class="chapter-number">4</span>&nbsp; <span class="chapter-title">Getting Started with Climate Data</span></span></a>
151151
</div>
152152
</li>
153153
<li class="sidebar-item">
154154
<div class="sidebar-item-container">
155-
<a href="./05_equalGrid.html" class="sidebar-item-text sidebar-link">
156-
<span class="menu-text"><span class="chapter-number">5</span>&nbsp; <span class="chapter-title">Equal-area grid for your area of interest.</span></span></a>
155+
<a href="./05_ncRaster.html" class="sidebar-item-text sidebar-link">
156+
<span class="menu-text"><span class="chapter-number">5</span>&nbsp; <span class="chapter-title">netCDF files in R: Raster, Spatial objects</span></span></a>
157157
</div>
158158
</li>
159159
<li class="sidebar-item">
160160
<div class="sidebar-item-container">
161-
<a href="./06_climatePUs.html" class="sidebar-item-text sidebar-link">
162-
<span class="menu-text"><span class="chapter-number">6</span>&nbsp; <span class="chapter-title">Fronts (or any variable) by equal-size grid</span></span></a>
161+
<a href="./06_equalGrid.html" class="sidebar-item-text sidebar-link">
162+
<span class="menu-text"><span class="chapter-number">6</span>&nbsp; <span class="chapter-title">Equal-area grid for your area of interest</span></span></a>
163163
</div>
164164
</li>
165165
<li class="sidebar-item">
166166
<div class="sidebar-item-container">
167-
<a href="./07_cmip6_models.html" class="sidebar-item-text sidebar-link">
168-
<span class="menu-text"><span class="chapter-number">7</span>&nbsp; <span class="chapter-title">CMIP6 models</span></span></a>
167+
<a href="./07_climatePUs.html" class="sidebar-item-text sidebar-link">
168+
<span class="menu-text"><span class="chapter-number">7</span>&nbsp; <span class="chapter-title">Variable by equal-size grid</span></span></a>
169169
</div>
170170
</li>
171171
<li class="sidebar-item">

0 commit comments

Comments
 (0)