-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathss_05_climate.qmd
204 lines (157 loc) · 9.94 KB
/
ss_05_climate.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
---
title: "Climate and Weather"
editor: source
editor_options:
chunk_output_type: console
---
```{r}
library(dplyr)
library(tibble)
library(gt)
```
## Climate {#sec-clim}
Climate parameters affect soil development directly (e.g. freeze-thaw cycles) and indirectly (e.g. by their influence on vegetation community composition and structure).
### Global {#sec-clim-global}
The Köppen-Geiger climate classification [@köppen1936] is the most well-known and accepted global system, and has been periodically updated (e.g. [@kottek2006; @beck2018; @beck2023]). Current maps and projections under various climate change scenarios are available from <https://www.gloh2o.org/koppen/>.
In and around New Zealand, the Köppen regions that currently occur are listed in @tbl-ss-koppenz.
```{r}
#| label: tbl-ss-koppenz
#| tbl-cap: "Köppen climate regions of New Zealand and its neighbours"
dat_ss_koppenz <-
tribble(~Code, ~Name, ~Locations,
'Af', 'Tropical, rainforest', 'Pacific Islands e.g. Tonga, Samoa',
'Am' , 'Tropical, monsoon', 'Northwest coast of Fijian islands',
'Bsk', 'Arid, steppe, cold', 'Central Otago, Melbourne, Northwest Victoria',
'Cfa', 'Temperate, no dry season, hot summer', 'Coastal New South Wales and southern Queensland',
'Cfb', 'Temperate, no dry season, warm summer', 'Majority of New Zealand; Chatham Islands; coastal southeastern Australia; Tasmania',
'Cfc', 'Temperate, no dry season, cold summer', 'Small areas of North Island e.g. upper Ruahines; lower mountains in South Island e.g. Peel Range, Nelson',
'Dfb', 'Cold, no dry season, warm summer', 'Sheltered pockets in the Southern Alps',
'Dfc', 'Cold, no dry season, cold summer', 'Lower slopes of major volcanoes and the Southern Alps',
'ET', 'Polar, tundra', 'Upper slopes of major volcanoes and the Southern Alps',
'EF', 'Polar, frost', 'Antarctica')
tbl_ss_koppenz <- gt(dat_ss_koppenz) |>
tab_options(
column_labels.font.weight = 'bold',
heading.title.font.weight = 'bold',
table.align = 'center',
table.width = '85%'
) |>
tab_style(style = list(cell_text(color = 'red',
weight = 'bold',
align = 'center')),
locations = cells_body(columns = 1)) |>
cols_width(Code ~pct(10))
tbl_ss_koppenz
```
![Köppen-Geiger climate regions for New Zealand](data/NZ_Koppen.png){#fig-kop .lightbox width="65%"}
Since most work programs will take place within one zone, regional climate rarely needs to be noted in the field.
Where a study area appears to deviate from a regional map, the extent and nature of the deviation should be discussed in project reporting.
### Regional {#sec-clim-region}
Various climate classifications specific to New Zealand have been produced [@robertson1956; @garr1991; @sturman1999].
NIWA have more recently published a useful [regional summary classification](https://niwa.co.nz/climate-and-weather/overview-new-zealands-climate), although it is not accompanied by spatial data. The classification is briefly reproduced in @tbl-ss-climnz below. As with the global classifications, these don't need to be recorded in the field.
More detailed discussions of each region's climate are published in NIWA's [Regional Climatologies](https://niwa.co.nz/climate-and-weather/regional-climatologies).
```{r}
#| label: tbl-ss-climnz
#| tbl-cap: "NIWA climate regions of New Zealand"
dat_ss_climnz <-
tribble(~Code, ~Name, ~Locations,
'NiN', 'Northern New Zealand', 'Auckland, Tauranga, and regions north',
'NiC', 'Central North Island', 'Hamilton, Taupō, Rotorua',
'NiW', 'South-West North Island', 'New Plymouth, Wanganui, Palmerston North, Wellington',
'NiE', 'Eastern North Island', 'Gisborne, Napier, Masterton',
'SiN', 'Northern South Island', 'Nelson, Blenheim',
'SiW', 'Western South Island', 'Westport, Hokitika, Milford Sound',
'SiE', 'Eastern South Island', 'Kaikoura, Christchurch, Timaru',
'SiI', 'Inland South Island', 'Lake Tekapo, Queenstown, Alexandra, Manapouri',
'SiM', 'Mountainous South Island', 'Mount Cook and other alpine areas',
'SiS', 'Southern New Zealand', 'Dunedin, Invercargill',
'Chi', 'Chatham Islands', 'Chatham Islands',
'Ant', 'Antarctica', 'Scott Base')
tbl_ss_climnz <- gt(dat_ss_climnz) |>
tab_options(
column_labels.font.weight = 'bold',
heading.title.font.weight = 'bold',
table.align = 'center',
table.width = '85%'
) |>
tab_style(style = list(cell_text(color = 'red',
weight = 'bold',
align = 'center')),
locations = cells_body(columns = 1)) |>
cols_width(Code ~pct(10))
tbl_ss_climnz
```
## Specific measurements {#sec-clim-meas}
Some climate parameters are more directly related to soils than others, mainly through their influence on vegetation community and evapotranspiration. Spatial estimates of these parameters have been published in the NZ Environmental Data Stack [@mccarthy2021], available from the [MWLR Datastore](https://datastore.landcareresearch.co.nz/gl/dataset/nzenvds). Estimates can also be constructed from local records, where these are available.
### Rainfall {#sec-clim-rfall}
Soil moisture availability strongly influences chemical weathering in soils [@dixon2016], and in many parts of the landscape the main source of soil moisture is rainfall.
- Total annual rainfall: Some soils are unlikely to form outside a particular total annual rainfall range, e.g. Allophanic soils are uncommon where total annual rainfall is less than 1000 mm [@hewitt2010].
- Rainfall seasonality: Calculated as the mean of monthly rainfall totals, divided by their standard deviation. More pronounced seasonality implies stronger soil wetting and drying cycles, which in turn influences weathering processes.
- An alternate measurement of seasonality involves calculating the ratio of rainfall in the warmest versus the coolest three months. In New Zealand this is usually (Dec + Jan + Feb)/(June + Jul + Aug).
### Temperature {#sec-clim-temp}
- Mean annual temperature: The mean temperature recorded year-round.
- Mean summer temperature: The mean temperature recorded over the warmest quarter of the year. In New Zealand, this is usually December-January-February. Mean summer temperature was a key parameter used by @singers2014 to classify NZ terrestrial ecosystems.
- Growing Degree Days (GDD): GDD measures the total number of °C above a set minimum temperature (usually 5, 10, or 16°C). Average daily temperature (max - min/2) is used in the calculation, and where temperature is below the set minimum, 0 is recorded. Plant species have specific GDD requirements that help determine their distribution.
- Frost Days (FD): Frost days are days where the temperature drops below 0 °C, measured 1.2 m above the land surface.
### Insolation {#sec-clim-insol}
The amount of solar energy received by a site, modified by terrain and cloud cover, can strongly affect plant growth and soil weathering rates.
### Prevailing winds {#sec-clim-wind}
The prevailing wind direction, its usual strength and seasonality all affect evapotranspiration rates and even the physical development of growing plants.
## Weather {#sec-weath}
Contemporary weather conditions have not necessarily had a strong influence on soil formation, except perhaps in young and/or rapidly developing soils. These parameters are more relevant for agricultural suitability assessment and for interpreting soil profile descriptions.
### Current weather {#sec-weath-now}
Record the weather at the time of observation using the codes in @tbl-ss-weatherc, plus temperature in degrees Celsius. These are not always essential, but can affect colour recording and some field tests.
e.g. [SU 21]{.ceg} for a perfect day in the field.
```{r}
#| label: tbl-ss-weatherc
#| tbl-cap: "Current weather conditions, Schoeneberger et al. [-@schoeneberger2012], 1-1"
dat_ss_weatherc <-
tribble(~Code, ~Name,
'SU', 'Sunny',
'PC', 'Partly cloudy',
'OV', 'Overcast',
'RA', 'Rain',
'SL', 'Sleet',
'SN', 'Snow')
tbl_ss_weatherc <- gt(dat_ss_weatherc) |>
tab_options(
column_labels.font.weight = 'bold',
heading.title.font.weight = 'bold',
table.align = 'center',
table.width = '85%'
) |>
tab_style(style = list(cell_text(color = 'red',
weight = 'bold',
align = 'center')),
locations = cells_body(columns = 1)) |>
cols_width(Code ~pct(10))
tbl_ss_weatherc
```
### Recent rainfall {#sec-weath-rrain}
Record recent rainfall using the codes in @tbl-ss-weatherp. This is optional, but can provide valuable context when recording surface cover (@sec-pr-surfcov), the presence of surface water at a site (@sec-pr-surfw), detailed erosion/deposition descriptions (@sec-pr-erosion, @sec-pr-deposition) and soil moisture status (@sec-pr-sws).
```{r}
#| label: tbl-ss-weatherp
#| tbl-cap: "Recent rainfall, adapted from FAO [-@un-fao2006], Table 2"
dat_ss_weatherp <-
tribble(~Code, ~Name,
'NM', 'No rain in the last month',
'NW', 'No rain in the last week',
'ND', 'No rain in the last 24 hours',
'RD', 'Rain but no heavy rain in the last 24 hours',
'RH', 'Heavy rain for some days or excessive rain in the last 24 hours',
'RE', 'Extremely rainy or snow melting',
'UK', 'Unknown/uncertain')
tbl_ss_weatherp <- gt(dat_ss_weatherp) |>
tab_options(
column_labels.font.weight = 'bold',
heading.title.font.weight = 'bold',
table.align = 'center',
table.width = '85%'
) |>
tab_style(style = list(cell_text(color = 'red',
weight = 'bold',
align = 'center')),
locations = cells_body(columns = 1)) |>
cols_width(Code ~pct(10))
tbl_ss_weatherp
```