Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into 6-display-geotiff-o…
Browse files Browse the repository at this point in the history
…n-map
  • Loading branch information
FlatErikk committed Jul 5, 2024
2 parents 821e604 + c914a42 commit 03604ab
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 20 deletions.
8 changes: 4 additions & 4 deletions src/lib/tempresults/tif_map.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,11 @@
{
// Alle baender 1,2,3,4,5,6,.....
bands: [selected_band, selected_band_dif],
// url: selected_tif_url
url: selected_tif_url
// url: "https://leutra.geogr.uni-jena.de/tippecc_data/tmp/water_budget/" + "CLMcom-KIT-CCLM5-0-15_v1_MOHC-HadGEM2-ES__evspsblpot_all__mm__yearsum_mean_2080_2099.tif"
url:
'https://leutra.geogr.uni-jena.de/tippecc_data/tmp/water_budget/bias/' +
'b_CLMcom-KIT-CCLM5-0-15_v1_MPI-M-MPI-ESM-LR__water_budget_all__mm__yearsum.tif'
//url:
// 'https://leutra.geogr.uni-jena.de/tippecc_data/tmp/water_budget/bias/' +
// 'b_CLMcom-KIT-CCLM5-0-15_v1_MPI-M-MPI-ESM-LR__water_budget_all__mm__yearsum.tif'
// max: current_band_metainfo.max
}
]
Expand Down
31 changes: 16 additions & 15 deletions src/routes/case_studies/casestudy2/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,21 @@

<blockquote class="content-blockquote">
Case study 2 is the Namibian contribution to TIPPECC. It focuses on the arid zone pastoralist
rangeland system of the Ovahimba of northern Kunene. Ovahimba have inhabited the region for over
200 years, surviving several intense droughts. The pastoralist lifestyle is finely attuned to
its environment, adapting to seasonal and longer-term fluctuations in their resources. However,
several factors, including population growth and increased sedentarisation have put pressure on
the whole social-ecological system (SES), making it vulnerable to climate change and subsequent
regime shifts in their resource base. TIPPECC-Kunene aims to use both traditional ecological
knowledge and scientific data to determine 1) the probability of climate tipping points leading
to regime shifts in the SES, and 2) those factors that will cause changes and/or shifts, with an
emphasis on the role that a climate tipping point(s) will play in this. We further aim to 3)
co-develop, with affected communities, feasible adaptation strategies to ongoing global change,
ensuring alignment with inherent coping strategies. TIPPECC Kunene is organised around four main
objectives, each comprising between one and four sub-projects. Study topics include vegetation
change and land degradation, livestock foraging ecology, changes in resource access rules,
options for climate change adaptation and alternative livelihoods, and the role of permanent
water provisioning in driving economic, social and environmental change.
rangeland social-ecological system (SES) of the Ovahimba of northern Kunene. Ovahimba have
inhabited the region for over 200 years, surviving several intense droughts. The pastoralist
lifestyle is finely attuned to its environment, adapting to seasonal and longer-term
fluctuations in their resources. However, several factors, including population growth and
increased sedentarisation have put pressure on the whole SES, making it vulnerable to potential
tipping points in climate and subsequent shifts in their resource base. TIPPECC-Kunene aims to
use both traditional ecological knowledge and scientific data to determine 1) the probability of
climate tipping points leading to regime shifts in the SES, and 2) those factors that will cause
changes and/or shifts, with an emphasis on the role that a climate tipping point(s) will play in
this. We further aim to 3) co-develop, with affected communities, feasible adaptation strategies
to ongoing global change, ensuring alignment with inherent coping strategies and traditional
access rules. TIPPECC Kunene is organised around four main objectives, each comprising between
one and four sub-projects. Study topics include vegetation change and land degradation,
livestock foraging ecology, changes in resource access rules, options for climate change
adaptation and alternative livelihoods, and the role of permanent water provisioning in driving
economic, social and environmental change.
</blockquote>
</div>
20 changes: 19 additions & 1 deletion src/routes/water_budget/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"wget --input-file 'http://127.0.0.1:8000/climate/get_temp_urls?hash=21cd9c90faad4dc19b73c8c0ae75d51a'";
let wget_add_args = '-r -H -N --cut-dirs=2';
let type = 'water_budget';
let type = 'kariba';
// set default search type
// select_search_type('collection');
Expand Down Expand Up @@ -183,6 +183,14 @@
font_bold_col = '';
font_bold_ind = 'font-bold';
type = new_type;
} else if (new_type == 'kariba') {
font_bold_col = '';
font_bold_ind = 'font-bold';
type = new_type;
} else if (new_type == 'vaal') {
font_bold_col = '';
font_bold_ind = 'font-bold';
type = new_type;
}
_fetch_foldercontent_by_type(type)
Expand All @@ -209,6 +217,16 @@
class="btn variant-filled-tertiary {font_bold_ind}"
on:click={() => set_type('water_budget_bias')}>Water Budget bias adjusted</button
>
<button
type="button"
class="btn variant-filled-tertiary {font_bold_ind}"
on:click={() => set_type('kariba')}>Kariba</button
>
<button
type="button"
class="btn variant-filled-tertiary {font_bold_ind}"
on:click={() => set_type('vaal')}>Vaal</button
>
</div>
<div>
<input
Expand Down

0 comments on commit 03604ab

Please sign in to comment.