changeset 0:f20914d71c9d draft default tip

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors commit a4635c2349750b45d47b50ff1cecc8c5fdeb58e0
author ecology
date Mon, 08 Apr 2024 16:33:11 +0000
parents
children
files sdmpredictors_list_layers.R sdmpredictors_list_layers.xml test-data/1_data_paleo.csv test-data/1_data_paleo.tabular test-data/1_data_paleo.tsv test-data/2_data_future.tabular test-data/2_data_future.tsv test-data/3_data_curren.tsv test-data/3_data_current.tabular test-data/3_data_current.tsv
diffstat 10 files changed, 4049 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sdmpredictors_list_layers.R	Mon Apr 08 16:33:11 2024 +0000
@@ -0,0 +1,119 @@
+#!/bin/Rscript
+
+args = commandArgs(trailingOnly=TRUE)
+
+#lister les option pour future et paléo, source internet ?
+#donner une erreur quand une option est incorrecte
+
+library(sdmpredictors)
+
+layers_modern_fun <- function(argument_number, file_number){
+  
+  data_terrestrial = as.logical(args[argument_number+1])
+  data_marine      = as.logical(args[argument_number+2])
+  data_freshwater  = as.logical(args[argument_number+3])
+  data_monthly     = as.logical(args[argument_number+4])
+  data_version     = as.numeric(args[argument_number+5])
+  
+  if(data_version==0){data_version <- NULL}
+  
+  datasets <- list_datasets(terrestrial = data_terrestrial
+                            , marine = data_marine
+                            , freshwater = data_freshwater)
+  
+  write.table(list_layers(datasets
+                         , terrestrial = data_terrestrial
+                         , marine = data_marine
+                         , freshwater = data_freshwater
+                         , monthly = data_monthly
+                         , version = data_version
+                         ), file = paste(as.character(file_number),"data_current.tabular", sep = "_"), sep = "\t", row.names=FALSE)
+}
+
+layers_future_fun <- function(argument_number, file_number){
+  
+  data_terrestrial = as.logical(args[argument_number+1])
+  data_marine      = as.logical(args[argument_number+2])
+  data_freshwater  = as.logical(args[argument_number+3])
+  data_monthly     = as.logical(args[argument_number+4])
+  data_version     = as.numeric(args[argument_number+5])
+  data_scenario    = as.character(args[argument_number+6])
+  data_year        = as.numeric(args[argument_number+7])
+  
+  if(data_version==0){data_version <- NULL}
+  if(data_scenario=="All"){data_scenario <- NA}
+  if(data_year==0){data_year <- NA}
+  
+  datasets <- list_datasets(terrestrial = data_terrestrial
+                            , marine = data_marine
+                            , freshwater = data_freshwater)
+                            
+  write.table(list_layers_future(datasets
+                                , terrestrial = data_terrestrial
+                                , marine = data_marine
+                                , freshwater = data_freshwater
+                                , monthly = data_monthly
+                                , version = data_version
+                                , scenario = data_scenario
+                                , year = data_year
+                                ), file = paste(as.character(file_number),"data_future.tabular", sep = "_"), sep = "\t", row.names=FALSE)
+}
+
+layers_paleo_fun <- function(argument_number, file_number){
+  
+  data_terrestrial = as.logical(args[argument_number+1])
+  data_marine      = as.logical(args[argument_number+2])
+  data_freshwater  = as.logical(args[argument_number+3])
+  data_monthly     = as.logical(args[argument_number+4])
+  data_version     = as.numeric(args[argument_number+5])
+  data_model_name  = as.character(args[argument_number+6])
+  data_epoch       = as.character(args[argument_number+7])
+  data_years_ago   = as.numeric(args[argument_number+8])
+  
+  if(data_version==0){data_versio <- NULL}
+  if(data_model_name=="All"){data_model_name <- NA}
+  if(data_epoch=="All"){data_epoch <- NA}
+  if(data_years_ago==0){data_years_ago <- NA}
+  
+  datasets <- list_datasets(terrestrial = data_terrestrial
+                            , marine = data_marine
+                            , freshwater = data_freshwater)
+                            
+  write.table(list_layers_paleo(datasets
+                                , terrestrial = data_terrestrial
+                                , marine = data_marine
+                                , freshwater = data_freshwater
+                                , monthly = data_monthly
+                                , version = data_versio
+                                , model_name = data_model_name
+                                , epoch = data_epoch 
+                                , years_ago = data_years_ago
+                                ), file = paste(as.character(file_number),"data_paleo.tabular", sep = "_"), sep = "\t", row.names=FALSE)
+}
+
+
+if (length(args)<0){stop("not enough arguments")
+}else{
+  n <- 1
+  for (a in 1:length(args)) {
+    if (as.character(args[a]) == "layers_current"){
+      layers_modern_fun(a,n)
+      n <- n+1
+    }
+
+    if (as.character(args[a]) == "layers_future"){
+      layers_future_fun(a,n)
+      n <- n+1
+    }
+  
+    if (as.character(args[a]) == "layers_paleo"){
+      layers_paleo_fun(a,n)
+      n <- n+1
+    }
+}}
+
+
+
+
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sdmpredictors_list_layers.xml	Mon Apr 08 16:33:11 2024 +0000
@@ -0,0 +1,202 @@
+<tool id="sdmpredictors_list_layers" name="SdmPredictors List Layers" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05">
+    <description>from environmental predictors for species distribution modeling</description>
+    <macros>
+        <token name="@TOOL_VERSION@">0.2.15</token> 
+        <token name="@VERSION_SUFFIX@">0</token>
+    </macros>
+    <requirements> 
+        <requirement type="package" version="4.3.2">r-base</requirement>
+        <requirement type="package" version="@TOOL_VERSION@">r-sdmpredictors</requirement>
+        <requirement type="package" version="0.2_19">r-codetools</requirement>
+    </requirements>
+    <command detect_errors="exit_code"><![CDATA[
+        
+        Rscript
+         '$__tool_directory__/sdmpredictors_list_layers.R'
+         #for $i, $s in enumerate($list_layers)
+            ${s.choose_layer.input_layer}
+            ${s.choose_layer.environement.terrestrial}
+            ${s.choose_layer.environement.marine}
+            ${s.choose_layer.environement.freshwater}
+            ${s.choose_layer.advanced_options.monthly}
+            ${s.choose_layer.advanced_options.version}
+            #if str($s.choose_layer.input_layer) == 'layers_future'
+                ${s.choose_layer.advanced_options.scenario}
+                ${s.choose_layer.advanced_options.year}
+            #elif str($s.choose_layer.input_layer) == 'layers_paleo'
+                ${s.choose_layer.advanced_options.model_name}
+                ${s.choose_layer.advanced_options.epoch}
+                ${s.choose_layer.advanced_options.years_ago}
+            #end if            
+         #end for
+
+         ]]></command>
+    <inputs>
+        <repeat name="list_layers" title="New layer list">
+            <conditional name="choose_layer">
+                <param name="input_layer" type="select" label="Choose Layer Timeframe">
+                    <option value="layers_current" selected="true">Current Layer</option>
+                    <option value="layers_future">Future Layer</option>
+                    <option value="layers_paleo">Paleo Layer</option>
+                </param>
+                <when value="layers_current">
+                    <section name="environement" title= "Environemental Datasets" expanded="true" help="Choose at least one environemental dataset to take layers from">
+                        <param name ="terrestrial" type="boolean" checked="true"
+                               label="Terrestrial Data" help="When enabled (default), then datasets that only have terrestrial data (sea masked) are returned."/>
+                        <param name ="marine" type="boolean" 
+                               label="Marine Data" help="When enabled, then datasets that only have marine data (land masked) are returned."/>
+                        <param name ="freshwater" type="boolean" 
+                               label="Freshwater Data" help="When enabled, then datasets that only have freshwater data are returned."/>
+                    </section>
+                    <section name="advanced_options" title= "Advanced Option" expanded="false">
+                        <param name ="monthly" type="boolean" checked="true" 
+                               label="Monthly" help="When enabled, no monthly layers are returned. All annual and monthly layers are returned by default."/>
+                        <param name ="version" type="text" value="0" optional="false"
+                               label="Layer Version" help="When equal to 0, layers from all versions of datasets are returned (default) else layers are filtered by version number."/>
+                    </section>
+                </when>
+                <when value="layers_future">
+                    <section name="environement" title= "Environemental Datasets" expanded="true" help="Choose at least one environemental dataset to take layers from">
+                        <param name ="terrestrial" type="boolean" checked="true"
+                               label="Terrestrial Data" help="When enabled (default), then datasets that only have terrestrial data (sea masked) are returned."/>
+                        <param name ="marine" type="boolean" 
+                               label="Marine Data" help="When enabled, then datasets that only have marine data (land masked) are returned."/>
+                        <param name ="freshwater" type="boolean" 
+                               label="Freshwater Data" help="When enabled, then datasets that only have freshwater data are returned."/>
+                    </section>
+                    <section name="advanced_options" title= "Advanced Option" expanded="false">
+                        <param name ="monthly" type="boolean" checked="true" 
+                               label="Monthly" help="When enabled, no monthly layers are returned. All annual and monthly layers are returned by default."/>
+                        <param name ="version" type="text" value="0" optional="false"
+                               label="Layer Version" help="When equal to 0, layers from all versions of datasets are returned (default) else layers are filtered by version number."/>
+                        <param name ="scenario" type="text" value="All" optional="false"
+                               label="Scenario" help="Climate change scenario, e.g. 'B1', 'A1B', 'A2'. By default All scenarios are listed."/>
+                        <param name ="year" type="text" value="0" optional="false"
+                               label="Year" help="Year for which you want the climate change prediction, e.g. 2100,2200. When 0 all years predicted are listed."/>
+                    </section>
+                </when>
+                <when value="layers_paleo">
+                    <section name="environement" title= "Environemental Datasets" expanded="true" help="Choose at least one environemental dataset to take layers from">
+                        <param name ="terrestrial" type="boolean" checked="true"
+                               label="Terrestrial Data" help="When enabled (default), then datasets that only have terrestrial data (sea masked) are returned."/>
+                        <param name ="marine" type="boolean" 
+                               label="Marine Data" help="When enabled, then datasets that only have marine data (land masked) are returned."/>
+                        <param name ="freshwater" type="boolean" 
+                               label="Freshwater Data" help="When enabled, then datasets that only have freshwater data are returned."/>
+                     </section>
+                    <section name="advanced_options" title= "Advanced Option" expanded="false">
+                        <param name ="monthly" type="boolean" checked="true" 
+                               label="Monthly" help="When enabled, no monthly layers are returned. All annual and monthly layers are returned by default."/>
+                        <param name ="version" type="text" value="0" optional="false"
+                               label="Layer Version" help="When equal to 0, layers from all versions of datasets are returned (default) else layers are filtered by version number."/>
+                        <param name ="model_name" type="text" value="All" optional="false"
+                               label="Model Name" help="Paleo climate model name, see the model_name column in the result. By default all models are listed."/>
+                        <param name ="epoch" type="text" value="All" optional="false"
+                               label="Epoch" help="Epoch for which you want the paleo layer, e.g. 'mid-Holocene', 'Last Glacial Maximum'. By default all epochs are listed."/>
+                        <param name ="years_ago" type="text" value="0" optional="false"
+                               label="Years Ago" help="Years for which you want the paleo layer, e.g. 6000, 21000.When 0 all years are listed."/>
+                   </section>
+                </when>
+            </conditional>
+        </repeat>
+    </inputs>
+    <outputs>
+        <collection name="datasets_output" type="list"
+            label="Datasets list">
+        <discover_datasets pattern="__name_and_ext__" />
+        </collection>
+    </outputs>
+    <tests>
+        <test>
+            <repeat name="list_layers">
+                <conditional name="choose_layer">
+                    <param name="input_layer" value="layers_paleo"/>
+                    <section name="environement">
+                        <param name="terrestrial" value="false"/>
+                        <param name="marine" value="true"/>
+                        <param name="freshwater" value="false"/>
+                    </section>
+                    <section name="advanced_options">
+                        <param name="monthly" value="true"/>
+                        <param name="version" value="0"/>
+                        <param name="model_name" value="All"/>
+                        <param name="epoch" value="All"/>
+                        <param name="years_ago" value="0"/>
+                    </section>
+                </conditional>
+            </repeat>
+            <repeat name="list_layers">
+                <conditional name="choose_layer">
+                    <param name="input_layer" value="layers_future"/>
+                    <section name="environement">
+                        <param name="terrestrial" value="true"/>
+                        <param name="marine" value="false"/>
+                        <param name="freshwater" value="false"/>
+                    </section>
+                    <section name="advanced_options">
+                        <param name="monthly" value="true"/>
+                        <param name="version" value="0"/>
+                        <param name="scenario" value="All"/>
+                        <param name="year" value="0"/>
+                    </section>
+                </conditional>
+            </repeat>
+            <repeat name="list_layers">
+                <conditional name="choose_layer">
+                    <param name="input_layer" value="layers_current"/>
+                    <section name="environement">
+                        <param name="terrestrial" value="false"/>
+                        <param name="marine" value="false"/>
+                        <param name="freshwater" value="true"/>
+                    </section>
+                    <section name="advanced_options">
+                        <param name="monthly" value="true"/>
+                        <param name="version" value="0"/>
+                    </section>
+                </conditional>
+            </repeat>
+            <output_collection name="datasets_output" type="list" count="3">
+                <element name="1_data_paleo" file="1_data_paleo.tabular" ftype="tabular"/>
+                <element name="2_data_future" file="2_data_future.tabular" ftype="tabular"/>
+                <element name="3_data_current" file="3_data_current.tabular" ftype="tabular"/>
+            </output_collection>
+        </test>
+    </tests>
+    <help><![CDATA[ 
+
+.. class:: infomark
+
+**What it does**
+
+This tool helps you get one or multiple list of environemental layers from multiple sources, including :
+WorldClim <https://www.worldclim.org/>
+ENVIREM <https://envirem.github.io/> 
+Bio-ORACLE <https://bio-oracle.org/> 
+and MARSPEC <http://www.marspec.org/> 
+
+____
+
+
+.. class:: infomark
+
+**Output**
+
+Eatch "New layer list" request will produce a tabular file, all files will be available in a collection
+
+.. class:: warning
+
+**If no Environement are selected, or if the option specified does not exist, the tool will produce an empty file.**
+
+
+    ]]></help>
+    <citations>
+        <citation type="bibtex">@Manual{,
+  title = {sdmpredictors: Species Distribution Modelling Predictor Datasets},
+  author = {Samuel Bosch and Salvador Fernandez},
+  year = {2023},
+  note = {R package version 0.2.15},
+  url = {http://lifewatch.github.io/sdmpredictors/},
+}        
+        </citation>
+    </citations>
+</tool>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/1_data_paleo.csv	Mon Apr 08 16:33:11 2024 +0000
@@ -0,0 +1,39 @@
+"dataset_code"	"layer_code"	"current_layer_code"	"model_name"	"epoch"	"years_ago"	"version"	"layer_url"
+"MARSPEC"	"MS_bathy_21kya"	"MS_bathy_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_bathy_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo01_aspect_EW_21kya"	"MS_biogeo01_aspect_EW_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo01_aspect_EW_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo02_aspect_NS_21kya"	"MS_biogeo02_aspect_NS_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo02_aspect_NS_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo03_plan_curvature_21kya"	"MS_biogeo03_plan_curvature_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo03_plan_curvature_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo04_profile_curvature_21kya"	"MS_biogeo04_profile_curvature_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo04_profile_curvature_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo05_dist_shore_21kya"	"MS_biogeo05_dist_shore_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo05_dist_shore_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo06_bathy_slope_21kya"	"MS_biogeo06_bathy_slope_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo06_bathy_slope_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo07_concavity_21kya"	"MS_biogeo07_concavity_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo07_concavity_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo08_sss_mean_21kya_adjCCSM"	"MS_biogeo08_sss_mean_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo08_sss_mean_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo08_sss_mean_21kya_noCCSM"	"MS_biogeo08_sss_mean_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo08_sss_mean_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo08_sss_mean_6kya"	"MS_biogeo08_sss_mean_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo08_sss_mean_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo09_sss_min_21kya_adjCCSM"	"MS_biogeo09_sss_min_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo09_sss_min_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo09_sss_min_21kya_noCCSM"	"MS_biogeo09_sss_min_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo09_sss_min_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo09_sss_min_6kya"	"MS_biogeo09_sss_min_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo09_sss_min_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo10_sss_max_21kya_adjCCSM"	"MS_biogeo10_sss_max_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo10_sss_max_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo10_sss_max_21kya_noCCSM"	"MS_biogeo10_sss_max_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo10_sss_max_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo10_sss_max_6kya"	"MS_biogeo10_sss_max_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo10_sss_max_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo11_sss_range_21kya_adjCCSM"	"MS_biogeo11_sss_range_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo11_sss_range_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo11_sss_range_21kya_noCCSM"	"MS_biogeo11_sss_range_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo11_sss_range_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo11_sss_range_6kya"	"MS_biogeo11_sss_range_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo11_sss_range_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo12_sss_variance_21kya_adjCCSM"	"MS_biogeo12_sss_variance_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo12_sss_variance_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo12_sss_variance_21kya_noCCSM"	"MS_biogeo12_sss_variance_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo12_sss_variance_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo12_sss_variance_6kya"	"MS_biogeo12_sss_variance_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo12_sss_variance_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo13_sst_mean_21kya_adjCCSM"	"MS_biogeo13_sst_mean_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo13_sst_mean_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo13_sst_mean_21kya_noCCSM"	"MS_biogeo13_sst_mean_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo13_sst_mean_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo13_sst_mean_6kya"	"MS_biogeo13_sst_mean_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo13_sst_mean_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo14_sst_min_21kya_adjCCSM"	"MS_biogeo14_sst_min_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo14_sst_min_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo14_sst_min_21kya_noCCSM"	"MS_biogeo14_sst_min_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo14_sst_min_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo14_sst_min_6kya"	"MS_biogeo14_sst_min_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo14_sst_min_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo15_sst_max_21kya_adjCCSM"	"MS_biogeo15_sst_max_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo15_sst_max_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo15_sst_max_21kya_noCCSM"	"MS_biogeo15_sst_max_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo15_sst_max_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo15_sst_max_6kya"	"MS_biogeo15_sst_max_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo15_sst_max_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo16_sst_range_21kya_adjCCSM"	"MS_biogeo16_sst_range_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo16_sst_range_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo16_sst_range_21kya_noCCSM"	"MS_biogeo16_sst_range_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo16_sst_range_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo16_sst_range_6kya"	"MS_biogeo16_sst_range_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo16_sst_range_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo17_sst_variance_21kya_adjCCSM"	"MS_biogeo17_sst_variance_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo17_sst_variance_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo17_sst_variance_21kya_noCCSM"	"MS_biogeo17_sst_variance_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo17_sst_variance_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo17_sst_variance_6kya"	"MS_biogeo17_sst_variance_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo17_sst_variance_6kya_lonlat.tif"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/1_data_paleo.tabular	Mon Apr 08 16:33:11 2024 +0000
@@ -0,0 +1,39 @@
+"dataset_code"	"layer_code"	"current_layer_code"	"model_name"	"epoch"	"years_ago"	"version"	"layer_url"
+"MARSPEC"	"MS_bathy_21kya"	"MS_bathy_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_bathy_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo01_aspect_EW_21kya"	"MS_biogeo01_aspect_EW_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo01_aspect_EW_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo02_aspect_NS_21kya"	"MS_biogeo02_aspect_NS_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo02_aspect_NS_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo03_plan_curvature_21kya"	"MS_biogeo03_plan_curvature_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo03_plan_curvature_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo04_profile_curvature_21kya"	"MS_biogeo04_profile_curvature_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo04_profile_curvature_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo05_dist_shore_21kya"	"MS_biogeo05_dist_shore_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo05_dist_shore_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo06_bathy_slope_21kya"	"MS_biogeo06_bathy_slope_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo06_bathy_slope_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo07_concavity_21kya"	"MS_biogeo07_concavity_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo07_concavity_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo08_sss_mean_21kya_adjCCSM"	"MS_biogeo08_sss_mean_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo08_sss_mean_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo08_sss_mean_21kya_noCCSM"	"MS_biogeo08_sss_mean_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo08_sss_mean_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo08_sss_mean_6kya"	"MS_biogeo08_sss_mean_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo08_sss_mean_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo09_sss_min_21kya_adjCCSM"	"MS_biogeo09_sss_min_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo09_sss_min_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo09_sss_min_21kya_noCCSM"	"MS_biogeo09_sss_min_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo09_sss_min_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo09_sss_min_6kya"	"MS_biogeo09_sss_min_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo09_sss_min_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo10_sss_max_21kya_adjCCSM"	"MS_biogeo10_sss_max_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo10_sss_max_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo10_sss_max_21kya_noCCSM"	"MS_biogeo10_sss_max_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo10_sss_max_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo10_sss_max_6kya"	"MS_biogeo10_sss_max_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo10_sss_max_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo11_sss_range_21kya_adjCCSM"	"MS_biogeo11_sss_range_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo11_sss_range_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo11_sss_range_21kya_noCCSM"	"MS_biogeo11_sss_range_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo11_sss_range_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo11_sss_range_6kya"	"MS_biogeo11_sss_range_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo11_sss_range_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo12_sss_variance_21kya_adjCCSM"	"MS_biogeo12_sss_variance_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo12_sss_variance_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo12_sss_variance_21kya_noCCSM"	"MS_biogeo12_sss_variance_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo12_sss_variance_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo12_sss_variance_6kya"	"MS_biogeo12_sss_variance_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo12_sss_variance_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo13_sst_mean_21kya_adjCCSM"	"MS_biogeo13_sst_mean_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo13_sst_mean_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo13_sst_mean_21kya_noCCSM"	"MS_biogeo13_sst_mean_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo13_sst_mean_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo13_sst_mean_6kya"	"MS_biogeo13_sst_mean_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo13_sst_mean_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo14_sst_min_21kya_adjCCSM"	"MS_biogeo14_sst_min_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo14_sst_min_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo14_sst_min_21kya_noCCSM"	"MS_biogeo14_sst_min_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo14_sst_min_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo14_sst_min_6kya"	"MS_biogeo14_sst_min_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo14_sst_min_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo15_sst_max_21kya_adjCCSM"	"MS_biogeo15_sst_max_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo15_sst_max_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo15_sst_max_21kya_noCCSM"	"MS_biogeo15_sst_max_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo15_sst_max_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo15_sst_max_6kya"	"MS_biogeo15_sst_max_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo15_sst_max_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo16_sst_range_21kya_adjCCSM"	"MS_biogeo16_sst_range_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo16_sst_range_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo16_sst_range_21kya_noCCSM"	"MS_biogeo16_sst_range_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo16_sst_range_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo16_sst_range_6kya"	"MS_biogeo16_sst_range_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo16_sst_range_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo17_sst_variance_21kya_adjCCSM"	"MS_biogeo17_sst_variance_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo17_sst_variance_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo17_sst_variance_21kya_noCCSM"	"MS_biogeo17_sst_variance_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo17_sst_variance_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo17_sst_variance_6kya"	"MS_biogeo17_sst_variance_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo17_sst_variance_6kya_lonlat.tif"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/1_data_paleo.tsv	Mon Apr 08 16:33:11 2024 +0000
@@ -0,0 +1,39 @@
+"dataset_code"	"layer_code"	"current_layer_code"	"model_name"	"epoch"	"years_ago"	"version"	"layer_url"
+"MARSPEC"	"MS_bathy_21kya"	"MS_bathy_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_bathy_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo01_aspect_EW_21kya"	"MS_biogeo01_aspect_EW_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo01_aspect_EW_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo02_aspect_NS_21kya"	"MS_biogeo02_aspect_NS_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo02_aspect_NS_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo03_plan_curvature_21kya"	"MS_biogeo03_plan_curvature_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo03_plan_curvature_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo04_profile_curvature_21kya"	"MS_biogeo04_profile_curvature_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo04_profile_curvature_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo05_dist_shore_21kya"	"MS_biogeo05_dist_shore_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo05_dist_shore_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo06_bathy_slope_21kya"	"MS_biogeo06_bathy_slope_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo06_bathy_slope_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo07_concavity_21kya"	"MS_biogeo07_concavity_5m"	"21kya_geophysical"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo07_concavity_21kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo08_sss_mean_21kya_adjCCSM"	"MS_biogeo08_sss_mean_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo08_sss_mean_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo08_sss_mean_21kya_noCCSM"	"MS_biogeo08_sss_mean_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo08_sss_mean_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo08_sss_mean_6kya"	"MS_biogeo08_sss_mean_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo08_sss_mean_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo09_sss_min_21kya_adjCCSM"	"MS_biogeo09_sss_min_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo09_sss_min_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo09_sss_min_21kya_noCCSM"	"MS_biogeo09_sss_min_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo09_sss_min_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo09_sss_min_6kya"	"MS_biogeo09_sss_min_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo09_sss_min_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo10_sss_max_21kya_adjCCSM"	"MS_biogeo10_sss_max_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo10_sss_max_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo10_sss_max_21kya_noCCSM"	"MS_biogeo10_sss_max_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo10_sss_max_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo10_sss_max_6kya"	"MS_biogeo10_sss_max_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo10_sss_max_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo11_sss_range_21kya_adjCCSM"	"MS_biogeo11_sss_range_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo11_sss_range_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo11_sss_range_21kya_noCCSM"	"MS_biogeo11_sss_range_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo11_sss_range_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo11_sss_range_6kya"	"MS_biogeo11_sss_range_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo11_sss_range_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo12_sss_variance_21kya_adjCCSM"	"MS_biogeo12_sss_variance_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo12_sss_variance_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo12_sss_variance_21kya_noCCSM"	"MS_biogeo12_sss_variance_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo12_sss_variance_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo12_sss_variance_6kya"	"MS_biogeo12_sss_variance_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo12_sss_variance_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo13_sst_mean_21kya_adjCCSM"	"MS_biogeo13_sst_mean_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo13_sst_mean_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo13_sst_mean_21kya_noCCSM"	"MS_biogeo13_sst_mean_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo13_sst_mean_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo13_sst_mean_6kya"	"MS_biogeo13_sst_mean_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo13_sst_mean_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo14_sst_min_21kya_adjCCSM"	"MS_biogeo14_sst_min_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo14_sst_min_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo14_sst_min_21kya_noCCSM"	"MS_biogeo14_sst_min_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo14_sst_min_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo14_sst_min_6kya"	"MS_biogeo14_sst_min_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo14_sst_min_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo15_sst_max_21kya_adjCCSM"	"MS_biogeo15_sst_max_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo15_sst_max_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo15_sst_max_21kya_noCCSM"	"MS_biogeo15_sst_max_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo15_sst_max_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo15_sst_max_6kya"	"MS_biogeo15_sst_max_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo15_sst_max_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo16_sst_range_21kya_adjCCSM"	"MS_biogeo16_sst_range_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo16_sst_range_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo16_sst_range_21kya_noCCSM"	"MS_biogeo16_sst_range_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo16_sst_range_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo16_sst_range_6kya"	"MS_biogeo16_sst_range_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo16_sst_range_6kya_lonlat.tif"
+"MARSPEC"	"MS_biogeo17_sst_variance_21kya_adjCCSM"	"MS_biogeo17_sst_variance_5m"	"21kya_ensemble_adjCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo17_sst_variance_21kya_adjCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo17_sst_variance_21kya_noCCSM"	"MS_biogeo17_sst_variance_5m"	"21kya_ensemble_noCCSM"	"Last Glacial Maximum"	21000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo17_sst_variance_21kya_noCCSM_lonlat.tif"
+"MARSPEC"	"MS_biogeo17_sst_variance_6kya"	"MS_biogeo17_sst_variance_5m"	"6kya_Ensemble"	"mid-Holocene"	6000	1	"https://www.lifewatch.be/sdmpredictors/MS_biogeo17_sst_variance_6kya_lonlat.tif"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/2_data_future.tabular	Mon Apr 08 16:33:11 2024 +0000
@@ -0,0 +1,1321 @@
+"dataset_code"	"layer_code"	"current_layer_code"	"model"	"scenario"	"year"	"version"	"layer_url"
+"WorldClim"	"WC_bio1_cc26_2050"	"WC_bio1"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_cc26_2070"	"WC_bio1"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_cc45_2050"	"WC_bio1"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_cc45_2070"	"WC_bio1"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_cc60_2050"	"WC_bio1"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_cc60_2070"	"WC_bio1"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_cc85_2050"	"WC_bio1"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_cc85_2070"	"WC_bio1"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_he26_2050"	"WC_bio1"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_he26_2070"	"WC_bio1"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_he45_2050"	"WC_bio1"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_he45_2070"	"WC_bio1"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_he60_2050"	"WC_bio1"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_he60_2070"	"WC_bio1"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_he85_2050"	"WC_bio1"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_he85_2070"	"WC_bio1"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_mr26_2050"	"WC_bio1"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_mr26_2070"	"WC_bio1"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_mr45_2050"	"WC_bio1"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_mr45_2070"	"WC_bio1"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_mr60_2050"	"WC_bio1"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_mr60_2070"	"WC_bio1"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_mr85_2050"	"WC_bio1"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_mr85_2070"	"WC_bio1"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_cc26_2050"	"WC_bio10"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_cc26_2070"	"WC_bio10"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_cc45_2050"	"WC_bio10"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_cc45_2070"	"WC_bio10"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_cc60_2050"	"WC_bio10"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_cc60_2070"	"WC_bio10"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_cc85_2050"	"WC_bio10"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_cc85_2070"	"WC_bio10"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_he26_2050"	"WC_bio10"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_he26_2070"	"WC_bio10"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_he45_2050"	"WC_bio10"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_he45_2070"	"WC_bio10"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_he60_2050"	"WC_bio10"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_he60_2070"	"WC_bio10"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_he85_2050"	"WC_bio10"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_he85_2070"	"WC_bio10"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_mr26_2050"	"WC_bio10"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_mr26_2070"	"WC_bio10"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_mr45_2050"	"WC_bio10"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_mr45_2070"	"WC_bio10"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_mr60_2050"	"WC_bio10"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_mr60_2070"	"WC_bio10"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_mr85_2050"	"WC_bio10"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_mr85_2070"	"WC_bio10"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_cc26_2050"	"WC_bio11"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_cc26_2070"	"WC_bio11"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_cc45_2050"	"WC_bio11"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_cc45_2070"	"WC_bio11"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_cc60_2050"	"WC_bio11"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_cc60_2070"	"WC_bio11"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_cc85_2050"	"WC_bio11"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_cc85_2070"	"WC_bio11"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_he26_2050"	"WC_bio11"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_he26_2070"	"WC_bio11"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_he45_2050"	"WC_bio11"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_he45_2070"	"WC_bio11"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_he60_2050"	"WC_bio11"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_he60_2070"	"WC_bio11"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_he85_2050"	"WC_bio11"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_he85_2070"	"WC_bio11"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_mr26_2050"	"WC_bio11"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_mr26_2070"	"WC_bio11"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_mr45_2050"	"WC_bio11"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_mr45_2070"	"WC_bio11"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_mr60_2050"	"WC_bio11"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_mr60_2070"	"WC_bio11"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_mr85_2050"	"WC_bio11"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_mr85_2070"	"WC_bio11"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_cc26_2050"	"WC_bio12"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_cc26_2070"	"WC_bio12"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_cc45_2050"	"WC_bio12"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_cc45_2070"	"WC_bio12"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_cc60_2050"	"WC_bio12"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_cc60_2070"	"WC_bio12"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_cc85_2050"	"WC_bio12"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_cc85_2070"	"WC_bio12"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_he26_2050"	"WC_bio12"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_he26_2070"	"WC_bio12"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_he45_2050"	"WC_bio12"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_he45_2070"	"WC_bio12"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_he60_2050"	"WC_bio12"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_he60_2070"	"WC_bio12"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_he85_2050"	"WC_bio12"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_he85_2070"	"WC_bio12"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_mr26_2050"	"WC_bio12"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_mr26_2070"	"WC_bio12"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_mr45_2050"	"WC_bio12"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_mr45_2070"	"WC_bio12"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_mr60_2050"	"WC_bio12"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_mr60_2070"	"WC_bio12"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_mr85_2050"	"WC_bio12"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_mr85_2070"	"WC_bio12"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_cc26_2050"	"WC_bio13"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_cc26_2070"	"WC_bio13"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_cc45_2050"	"WC_bio13"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_cc45_2070"	"WC_bio13"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_cc60_2050"	"WC_bio13"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_cc60_2070"	"WC_bio13"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_cc85_2050"	"WC_bio13"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_cc85_2070"	"WC_bio13"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_he26_2050"	"WC_bio13"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_he26_2070"	"WC_bio13"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_he45_2050"	"WC_bio13"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_he45_2070"	"WC_bio13"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_he60_2050"	"WC_bio13"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_he60_2070"	"WC_bio13"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_he85_2050"	"WC_bio13"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_he85_2070"	"WC_bio13"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_mr26_2050"	"WC_bio13"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_mr26_2070"	"WC_bio13"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_mr45_2050"	"WC_bio13"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_mr45_2070"	"WC_bio13"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_mr60_2050"	"WC_bio13"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_mr60_2070"	"WC_bio13"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_mr85_2050"	"WC_bio13"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_mr85_2070"	"WC_bio13"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_cc26_2050"	"WC_bio14"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_cc26_2070"	"WC_bio14"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_cc45_2050"	"WC_bio14"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_cc45_2070"	"WC_bio14"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_cc60_2050"	"WC_bio14"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_cc60_2070"	"WC_bio14"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_cc85_2050"	"WC_bio14"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_cc85_2070"	"WC_bio14"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_he26_2050"	"WC_bio14"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_he26_2070"	"WC_bio14"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_he45_2050"	"WC_bio14"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_he45_2070"	"WC_bio14"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_he60_2050"	"WC_bio14"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_he60_2070"	"WC_bio14"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_he85_2050"	"WC_bio14"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_he85_2070"	"WC_bio14"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_mr26_2050"	"WC_bio14"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_mr26_2070"	"WC_bio14"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_mr45_2050"	"WC_bio14"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_mr45_2070"	"WC_bio14"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_mr60_2050"	"WC_bio14"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_mr60_2070"	"WC_bio14"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_mr85_2050"	"WC_bio14"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_mr85_2070"	"WC_bio14"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_cc26_2050"	"WC_bio15"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_cc26_2070"	"WC_bio15"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_cc45_2050"	"WC_bio15"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_cc45_2070"	"WC_bio15"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_cc60_2050"	"WC_bio15"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_cc60_2070"	"WC_bio15"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_cc85_2050"	"WC_bio15"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_cc85_2070"	"WC_bio15"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_he26_2050"	"WC_bio15"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_he26_2070"	"WC_bio15"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_he45_2050"	"WC_bio15"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_he45_2070"	"WC_bio15"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_he60_2050"	"WC_bio15"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_he60_2070"	"WC_bio15"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_he85_2050"	"WC_bio15"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_he85_2070"	"WC_bio15"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_mr26_2050"	"WC_bio15"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_mr26_2070"	"WC_bio15"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_mr45_2050"	"WC_bio15"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_mr45_2070"	"WC_bio15"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_mr60_2050"	"WC_bio15"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_mr60_2070"	"WC_bio15"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_mr85_2050"	"WC_bio15"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_mr85_2070"	"WC_bio15"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_cc26_2050"	"WC_bio16"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_cc26_2070"	"WC_bio16"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_cc45_2050"	"WC_bio16"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_cc45_2070"	"WC_bio16"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_cc60_2050"	"WC_bio16"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_cc60_2070"	"WC_bio16"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_cc85_2050"	"WC_bio16"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_cc85_2070"	"WC_bio16"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_he26_2050"	"WC_bio16"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_he26_2070"	"WC_bio16"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_he45_2050"	"WC_bio16"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_he45_2070"	"WC_bio16"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_he60_2050"	"WC_bio16"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_he60_2070"	"WC_bio16"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_he85_2050"	"WC_bio16"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_he85_2070"	"WC_bio16"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_mr26_2050"	"WC_bio16"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_mr26_2070"	"WC_bio16"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_mr45_2050"	"WC_bio16"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_mr45_2070"	"WC_bio16"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_mr60_2050"	"WC_bio16"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_mr60_2070"	"WC_bio16"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_mr85_2050"	"WC_bio16"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_mr85_2070"	"WC_bio16"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_cc26_2050"	"WC_bio17"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_cc26_2070"	"WC_bio17"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_cc45_2050"	"WC_bio17"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_cc45_2070"	"WC_bio17"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_cc60_2050"	"WC_bio17"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_cc60_2070"	"WC_bio17"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_cc85_2050"	"WC_bio17"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_cc85_2070"	"WC_bio17"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_he26_2050"	"WC_bio17"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_he26_2070"	"WC_bio17"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_he45_2050"	"WC_bio17"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_he45_2070"	"WC_bio17"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_he60_2050"	"WC_bio17"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_he60_2070"	"WC_bio17"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_he85_2050"	"WC_bio17"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_he85_2070"	"WC_bio17"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_mr26_2050"	"WC_bio17"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_mr26_2070"	"WC_bio17"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_mr45_2050"	"WC_bio17"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_mr45_2070"	"WC_bio17"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_mr60_2050"	"WC_bio17"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_mr60_2070"	"WC_bio17"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_mr85_2050"	"WC_bio17"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_mr85_2070"	"WC_bio17"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_cc26_2050"	"WC_bio18"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_cc26_2070"	"WC_bio18"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_cc45_2050"	"WC_bio18"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_cc45_2070"	"WC_bio18"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_cc60_2050"	"WC_bio18"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_cc60_2070"	"WC_bio18"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_cc85_2050"	"WC_bio18"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_cc85_2070"	"WC_bio18"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_he26_2050"	"WC_bio18"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_he26_2070"	"WC_bio18"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_he45_2050"	"WC_bio18"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_he45_2070"	"WC_bio18"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_he60_2050"	"WC_bio18"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_he60_2070"	"WC_bio18"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_he85_2050"	"WC_bio18"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_he85_2070"	"WC_bio18"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_mr26_2050"	"WC_bio18"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_mr26_2070"	"WC_bio18"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_mr45_2050"	"WC_bio18"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_mr45_2070"	"WC_bio18"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_mr60_2050"	"WC_bio18"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_mr60_2070"	"WC_bio18"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_mr85_2050"	"WC_bio18"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_mr85_2070"	"WC_bio18"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_cc26_2050"	"WC_bio19"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_cc26_2070"	"WC_bio19"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_cc45_2050"	"WC_bio19"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_cc45_2070"	"WC_bio19"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_cc60_2050"	"WC_bio19"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_cc60_2070"	"WC_bio19"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_cc85_2050"	"WC_bio19"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_cc85_2070"	"WC_bio19"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_he26_2050"	"WC_bio19"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_he26_2070"	"WC_bio19"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_he45_2050"	"WC_bio19"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_he45_2070"	"WC_bio19"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_he60_2050"	"WC_bio19"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_he60_2070"	"WC_bio19"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_he85_2050"	"WC_bio19"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_he85_2070"	"WC_bio19"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_mr26_2050"	"WC_bio19"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_mr26_2070"	"WC_bio19"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_mr45_2050"	"WC_bio19"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_mr45_2070"	"WC_bio19"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_mr60_2050"	"WC_bio19"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_mr60_2070"	"WC_bio19"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_mr85_2050"	"WC_bio19"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_mr85_2070"	"WC_bio19"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_cc26_2050"	"WC_bio2"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_cc26_2070"	"WC_bio2"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_cc45_2050"	"WC_bio2"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_cc45_2070"	"WC_bio2"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_cc60_2050"	"WC_bio2"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_cc60_2070"	"WC_bio2"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_cc85_2050"	"WC_bio2"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_cc85_2070"	"WC_bio2"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_he26_2050"	"WC_bio2"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_he26_2070"	"WC_bio2"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_he45_2050"	"WC_bio2"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_he45_2070"	"WC_bio2"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_he60_2050"	"WC_bio2"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_he60_2070"	"WC_bio2"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_he85_2050"	"WC_bio2"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_he85_2070"	"WC_bio2"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_mr26_2050"	"WC_bio2"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_mr26_2070"	"WC_bio2"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_mr45_2050"	"WC_bio2"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_mr45_2070"	"WC_bio2"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_mr60_2050"	"WC_bio2"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_mr60_2070"	"WC_bio2"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_mr85_2050"	"WC_bio2"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_mr85_2070"	"WC_bio2"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_cc26_2050"	"WC_bio3"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_cc26_2070"	"WC_bio3"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_cc45_2050"	"WC_bio3"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_cc45_2070"	"WC_bio3"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_cc60_2050"	"WC_bio3"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_cc60_2070"	"WC_bio3"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_cc85_2050"	"WC_bio3"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_cc85_2070"	"WC_bio3"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_he26_2050"	"WC_bio3"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_he26_2070"	"WC_bio3"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_he45_2050"	"WC_bio3"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_he45_2070"	"WC_bio3"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_he60_2050"	"WC_bio3"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_he60_2070"	"WC_bio3"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_he85_2050"	"WC_bio3"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_he85_2070"	"WC_bio3"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_mr26_2050"	"WC_bio3"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_mr26_2070"	"WC_bio3"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_mr45_2050"	"WC_bio3"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_mr45_2070"	"WC_bio3"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_mr60_2050"	"WC_bio3"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_mr60_2070"	"WC_bio3"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_mr85_2050"	"WC_bio3"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_mr85_2070"	"WC_bio3"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_cc26_2050"	"WC_bio4"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_cc26_2070"	"WC_bio4"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_cc45_2050"	"WC_bio4"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_cc45_2070"	"WC_bio4"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_cc60_2050"	"WC_bio4"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_cc60_2070"	"WC_bio4"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_cc85_2050"	"WC_bio4"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_cc85_2070"	"WC_bio4"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_he26_2050"	"WC_bio4"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_he26_2070"	"WC_bio4"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_he45_2050"	"WC_bio4"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_he45_2070"	"WC_bio4"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_he60_2050"	"WC_bio4"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_he60_2070"	"WC_bio4"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_he85_2050"	"WC_bio4"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_he85_2070"	"WC_bio4"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_mr26_2050"	"WC_bio4"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_mr26_2070"	"WC_bio4"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_mr45_2050"	"WC_bio4"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_mr45_2070"	"WC_bio4"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_mr60_2050"	"WC_bio4"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_mr60_2070"	"WC_bio4"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_mr85_2050"	"WC_bio4"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_mr85_2070"	"WC_bio4"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_cc26_2050"	"WC_bio5"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_cc26_2070"	"WC_bio5"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_cc45_2050"	"WC_bio5"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_cc45_2070"	"WC_bio5"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_cc60_2050"	"WC_bio5"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_cc60_2070"	"WC_bio5"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_cc85_2050"	"WC_bio5"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_cc85_2070"	"WC_bio5"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_he26_2050"	"WC_bio5"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_he26_2070"	"WC_bio5"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_he45_2050"	"WC_bio5"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_he45_2070"	"WC_bio5"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_he60_2050"	"WC_bio5"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_he60_2070"	"WC_bio5"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_he85_2050"	"WC_bio5"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_he85_2070"	"WC_bio5"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_mr26_2050"	"WC_bio5"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_mr26_2070"	"WC_bio5"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_mr45_2050"	"WC_bio5"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_mr45_2070"	"WC_bio5"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_mr60_2050"	"WC_bio5"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_mr60_2070"	"WC_bio5"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_mr85_2050"	"WC_bio5"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_mr85_2070"	"WC_bio5"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_cc26_2050"	"WC_bio6"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_cc26_2070"	"WC_bio6"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_cc45_2050"	"WC_bio6"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_cc45_2070"	"WC_bio6"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_cc60_2050"	"WC_bio6"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_cc60_2070"	"WC_bio6"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_cc85_2050"	"WC_bio6"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_cc85_2070"	"WC_bio6"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_he26_2050"	"WC_bio6"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_he26_2070"	"WC_bio6"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_he45_2050"	"WC_bio6"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_he45_2070"	"WC_bio6"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_he60_2050"	"WC_bio6"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_he60_2070"	"WC_bio6"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_he85_2050"	"WC_bio6"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_he85_2070"	"WC_bio6"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_mr26_2050"	"WC_bio6"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_mr26_2070"	"WC_bio6"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_mr45_2050"	"WC_bio6"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_mr45_2070"	"WC_bio6"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_mr60_2050"	"WC_bio6"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_mr60_2070"	"WC_bio6"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_mr85_2050"	"WC_bio6"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_mr85_2070"	"WC_bio6"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_cc26_2050"	"WC_bio7"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_cc26_2070"	"WC_bio7"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_cc45_2050"	"WC_bio7"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_cc45_2070"	"WC_bio7"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_cc60_2050"	"WC_bio7"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_cc60_2070"	"WC_bio7"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_cc85_2050"	"WC_bio7"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_cc85_2070"	"WC_bio7"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_he26_2050"	"WC_bio7"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_he26_2070"	"WC_bio7"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_he45_2050"	"WC_bio7"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_he45_2070"	"WC_bio7"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_he60_2050"	"WC_bio7"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_he60_2070"	"WC_bio7"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_he85_2050"	"WC_bio7"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_he85_2070"	"WC_bio7"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_mr26_2050"	"WC_bio7"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_mr26_2070"	"WC_bio7"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_mr45_2050"	"WC_bio7"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_mr45_2070"	"WC_bio7"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_mr60_2050"	"WC_bio7"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_mr60_2070"	"WC_bio7"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_mr85_2050"	"WC_bio7"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_mr85_2070"	"WC_bio7"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_cc26_2050"	"WC_bio8"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_cc26_2070"	"WC_bio8"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_cc45_2050"	"WC_bio8"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_cc45_2070"	"WC_bio8"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_cc60_2050"	"WC_bio8"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_cc60_2070"	"WC_bio8"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_cc85_2050"	"WC_bio8"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_cc85_2070"	"WC_bio8"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_he26_2050"	"WC_bio8"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_he26_2070"	"WC_bio8"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_he45_2050"	"WC_bio8"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_he45_2070"	"WC_bio8"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_he60_2050"	"WC_bio8"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_he60_2070"	"WC_bio8"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_he85_2050"	"WC_bio8"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_he85_2070"	"WC_bio8"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_mr26_2050"	"WC_bio8"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_mr26_2070"	"WC_bio8"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_mr45_2050"	"WC_bio8"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_mr45_2070"	"WC_bio8"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_mr60_2050"	"WC_bio8"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_mr60_2070"	"WC_bio8"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_mr85_2050"	"WC_bio8"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_mr85_2070"	"WC_bio8"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_cc26_2050"	"WC_bio9"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_cc26_2070"	"WC_bio9"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_cc45_2050"	"WC_bio9"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_cc45_2070"	"WC_bio9"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_cc60_2050"	"WC_bio9"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_cc60_2070"	"WC_bio9"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_cc85_2050"	"WC_bio9"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_cc85_2070"	"WC_bio9"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_he26_2050"	"WC_bio9"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_he26_2070"	"WC_bio9"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_he45_2050"	"WC_bio9"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_he45_2070"	"WC_bio9"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_he60_2050"	"WC_bio9"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_he60_2070"	"WC_bio9"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_he85_2050"	"WC_bio9"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_he85_2070"	"WC_bio9"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_mr26_2050"	"WC_bio9"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_mr26_2070"	"WC_bio9"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_mr45_2050"	"WC_bio9"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_mr45_2070"	"WC_bio9"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_mr60_2050"	"WC_bio9"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_mr60_2070"	"WC_bio9"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_mr85_2050"	"WC_bio9"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_mr85_2070"	"WC_bio9"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_cc26_2050"	"WC_prec1"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_cc26_2070"	"WC_prec1"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_cc45_2050"	"WC_prec1"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_cc45_2070"	"WC_prec1"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_cc60_2050"	"WC_prec1"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_cc60_2070"	"WC_prec1"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_cc85_2050"	"WC_prec1"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_cc85_2070"	"WC_prec1"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_he26_2050"	"WC_prec1"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_he26_2070"	"WC_prec1"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_he45_2050"	"WC_prec1"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_he45_2070"	"WC_prec1"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_he60_2050"	"WC_prec1"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_he60_2070"	"WC_prec1"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_he85_2050"	"WC_prec1"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_he85_2070"	"WC_prec1"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_mr26_2050"	"WC_prec1"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_mr26_2070"	"WC_prec1"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_mr45_2050"	"WC_prec1"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_mr45_2070"	"WC_prec1"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_mr60_2050"	"WC_prec1"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_mr60_2070"	"WC_prec1"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_mr85_2050"	"WC_prec1"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_mr85_2070"	"WC_prec1"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_cc26_2050"	"WC_prec10"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_cc26_2070"	"WC_prec10"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_cc45_2050"	"WC_prec10"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_cc45_2070"	"WC_prec10"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_cc60_2050"	"WC_prec10"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_cc60_2070"	"WC_prec10"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_cc85_2050"	"WC_prec10"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_cc85_2070"	"WC_prec10"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_he26_2050"	"WC_prec10"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_he26_2070"	"WC_prec10"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_he45_2050"	"WC_prec10"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_he45_2070"	"WC_prec10"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_he60_2050"	"WC_prec10"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_he60_2070"	"WC_prec10"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_he85_2050"	"WC_prec10"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_he85_2070"	"WC_prec10"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_mr26_2050"	"WC_prec10"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_mr26_2070"	"WC_prec10"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_mr45_2050"	"WC_prec10"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_mr45_2070"	"WC_prec10"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_mr60_2050"	"WC_prec10"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_mr60_2070"	"WC_prec10"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_mr85_2050"	"WC_prec10"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_mr85_2070"	"WC_prec10"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_cc26_2050"	"WC_prec11"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_cc26_2070"	"WC_prec11"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_cc45_2050"	"WC_prec11"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_cc45_2070"	"WC_prec11"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_cc60_2050"	"WC_prec11"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_cc60_2070"	"WC_prec11"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_cc85_2050"	"WC_prec11"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_cc85_2070"	"WC_prec11"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_he26_2050"	"WC_prec11"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_he26_2070"	"WC_prec11"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_he45_2050"	"WC_prec11"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_he45_2070"	"WC_prec11"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_he60_2050"	"WC_prec11"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_he60_2070"	"WC_prec11"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_he85_2050"	"WC_prec11"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_he85_2070"	"WC_prec11"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_mr26_2050"	"WC_prec11"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_mr26_2070"	"WC_prec11"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_mr45_2050"	"WC_prec11"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_mr45_2070"	"WC_prec11"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_mr60_2050"	"WC_prec11"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_mr60_2070"	"WC_prec11"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_mr85_2050"	"WC_prec11"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_mr85_2070"	"WC_prec11"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_cc26_2050"	"WC_prec12"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_cc26_2070"	"WC_prec12"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_cc45_2050"	"WC_prec12"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_cc45_2070"	"WC_prec12"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_cc60_2050"	"WC_prec12"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_cc60_2070"	"WC_prec12"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_cc85_2050"	"WC_prec12"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_cc85_2070"	"WC_prec12"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_he26_2050"	"WC_prec12"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_he26_2070"	"WC_prec12"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_he45_2050"	"WC_prec12"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_he45_2070"	"WC_prec12"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_he60_2050"	"WC_prec12"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_he60_2070"	"WC_prec12"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_he85_2050"	"WC_prec12"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_he85_2070"	"WC_prec12"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_mr26_2050"	"WC_prec12"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_mr26_2070"	"WC_prec12"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_mr45_2050"	"WC_prec12"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_mr45_2070"	"WC_prec12"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_mr60_2050"	"WC_prec12"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_mr60_2070"	"WC_prec12"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_mr85_2050"	"WC_prec12"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_mr85_2070"	"WC_prec12"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_cc26_2050"	"WC_prec2"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_cc26_2070"	"WC_prec2"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_cc45_2050"	"WC_prec2"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_cc45_2070"	"WC_prec2"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_cc60_2050"	"WC_prec2"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_cc60_2070"	"WC_prec2"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_cc85_2050"	"WC_prec2"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_cc85_2070"	"WC_prec2"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_he26_2050"	"WC_prec2"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_he26_2070"	"WC_prec2"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_he45_2050"	"WC_prec2"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_he45_2070"	"WC_prec2"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_he60_2050"	"WC_prec2"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_he60_2070"	"WC_prec2"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_he85_2050"	"WC_prec2"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_he85_2070"	"WC_prec2"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_mr26_2050"	"WC_prec2"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_mr26_2070"	"WC_prec2"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_mr45_2050"	"WC_prec2"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_mr45_2070"	"WC_prec2"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_mr60_2050"	"WC_prec2"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_mr60_2070"	"WC_prec2"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_mr85_2050"	"WC_prec2"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_mr85_2070"	"WC_prec2"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_cc26_2050"	"WC_prec3"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_cc26_2070"	"WC_prec3"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_cc45_2050"	"WC_prec3"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_cc45_2070"	"WC_prec3"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_cc60_2050"	"WC_prec3"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_cc60_2070"	"WC_prec3"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_cc85_2050"	"WC_prec3"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_cc85_2070"	"WC_prec3"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_he26_2050"	"WC_prec3"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_he26_2070"	"WC_prec3"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_he45_2050"	"WC_prec3"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_he45_2070"	"WC_prec3"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_he60_2050"	"WC_prec3"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_he60_2070"	"WC_prec3"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_he85_2050"	"WC_prec3"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_he85_2070"	"WC_prec3"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_mr26_2050"	"WC_prec3"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_mr26_2070"	"WC_prec3"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_mr45_2050"	"WC_prec3"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_mr45_2070"	"WC_prec3"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_mr60_2050"	"WC_prec3"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_mr60_2070"	"WC_prec3"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_mr85_2050"	"WC_prec3"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_mr85_2070"	"WC_prec3"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_cc26_2050"	"WC_prec4"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_cc26_2070"	"WC_prec4"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_cc45_2050"	"WC_prec4"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_cc45_2070"	"WC_prec4"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_cc60_2050"	"WC_prec4"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_cc60_2070"	"WC_prec4"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_cc85_2050"	"WC_prec4"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_cc85_2070"	"WC_prec4"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_he26_2050"	"WC_prec4"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_he26_2070"	"WC_prec4"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_he45_2050"	"WC_prec4"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_he45_2070"	"WC_prec4"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_he60_2050"	"WC_prec4"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_he60_2070"	"WC_prec4"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_he85_2050"	"WC_prec4"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_he85_2070"	"WC_prec4"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_mr26_2050"	"WC_prec4"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_mr26_2070"	"WC_prec4"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_mr45_2050"	"WC_prec4"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_mr45_2070"	"WC_prec4"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_mr60_2050"	"WC_prec4"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_mr60_2070"	"WC_prec4"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_mr85_2050"	"WC_prec4"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_mr85_2070"	"WC_prec4"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_cc26_2050"	"WC_prec5"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_cc26_2070"	"WC_prec5"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_cc45_2050"	"WC_prec5"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_cc45_2070"	"WC_prec5"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_cc60_2050"	"WC_prec5"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_cc60_2070"	"WC_prec5"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_cc85_2050"	"WC_prec5"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_cc85_2070"	"WC_prec5"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_he26_2050"	"WC_prec5"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_he26_2070"	"WC_prec5"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_he45_2050"	"WC_prec5"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_he45_2070"	"WC_prec5"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_he60_2050"	"WC_prec5"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_he60_2070"	"WC_prec5"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_he85_2050"	"WC_prec5"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_he85_2070"	"WC_prec5"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_mr26_2050"	"WC_prec5"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_mr26_2070"	"WC_prec5"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_mr45_2050"	"WC_prec5"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_mr45_2070"	"WC_prec5"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_mr60_2050"	"WC_prec5"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_mr60_2070"	"WC_prec5"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_mr85_2050"	"WC_prec5"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_mr85_2070"	"WC_prec5"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_cc26_2050"	"WC_prec6"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_cc26_2070"	"WC_prec6"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_cc45_2050"	"WC_prec6"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_cc45_2070"	"WC_prec6"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_cc60_2050"	"WC_prec6"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_cc60_2070"	"WC_prec6"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_cc85_2050"	"WC_prec6"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_cc85_2070"	"WC_prec6"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_he26_2050"	"WC_prec6"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_he26_2070"	"WC_prec6"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_he45_2050"	"WC_prec6"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_he45_2070"	"WC_prec6"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_he60_2050"	"WC_prec6"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_he60_2070"	"WC_prec6"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_he85_2050"	"WC_prec6"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_he85_2070"	"WC_prec6"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_mr26_2050"	"WC_prec6"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_mr26_2070"	"WC_prec6"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_mr45_2050"	"WC_prec6"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_mr45_2070"	"WC_prec6"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_mr60_2050"	"WC_prec6"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_mr60_2070"	"WC_prec6"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_mr85_2050"	"WC_prec6"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_mr85_2070"	"WC_prec6"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_cc26_2050"	"WC_prec7"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_cc26_2070"	"WC_prec7"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_cc45_2050"	"WC_prec7"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_cc45_2070"	"WC_prec7"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_cc60_2050"	"WC_prec7"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_cc60_2070"	"WC_prec7"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_cc85_2050"	"WC_prec7"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_cc85_2070"	"WC_prec7"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_he26_2050"	"WC_prec7"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_he26_2070"	"WC_prec7"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_he45_2050"	"WC_prec7"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_he45_2070"	"WC_prec7"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_he60_2050"	"WC_prec7"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_he60_2070"	"WC_prec7"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_he85_2050"	"WC_prec7"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_he85_2070"	"WC_prec7"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_mr26_2050"	"WC_prec7"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_mr26_2070"	"WC_prec7"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_mr45_2050"	"WC_prec7"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_mr45_2070"	"WC_prec7"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_mr60_2050"	"WC_prec7"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_mr60_2070"	"WC_prec7"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_mr85_2050"	"WC_prec7"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_mr85_2070"	"WC_prec7"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_cc26_2050"	"WC_prec8"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_cc26_2070"	"WC_prec8"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_cc45_2050"	"WC_prec8"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_cc45_2070"	"WC_prec8"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_cc60_2050"	"WC_prec8"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_cc60_2070"	"WC_prec8"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_cc85_2050"	"WC_prec8"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_cc85_2070"	"WC_prec8"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_he26_2050"	"WC_prec8"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_he26_2070"	"WC_prec8"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_he45_2050"	"WC_prec8"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_he45_2070"	"WC_prec8"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_he60_2050"	"WC_prec8"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_he60_2070"	"WC_prec8"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_he85_2050"	"WC_prec8"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_he85_2070"	"WC_prec8"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_mr26_2050"	"WC_prec8"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_mr26_2070"	"WC_prec8"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_mr45_2050"	"WC_prec8"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_mr45_2070"	"WC_prec8"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_mr60_2050"	"WC_prec8"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_mr60_2070"	"WC_prec8"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_mr85_2050"	"WC_prec8"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_mr85_2070"	"WC_prec8"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_cc26_2050"	"WC_prec9"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_cc26_2070"	"WC_prec9"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_cc45_2050"	"WC_prec9"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_cc45_2070"	"WC_prec9"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_cc60_2050"	"WC_prec9"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_cc60_2070"	"WC_prec9"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_cc85_2050"	"WC_prec9"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_cc85_2070"	"WC_prec9"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_he26_2050"	"WC_prec9"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_he26_2070"	"WC_prec9"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_he45_2050"	"WC_prec9"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_he45_2070"	"WC_prec9"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_he60_2050"	"WC_prec9"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_he60_2070"	"WC_prec9"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_he85_2050"	"WC_prec9"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_he85_2070"	"WC_prec9"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_mr26_2050"	"WC_prec9"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_mr26_2070"	"WC_prec9"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_mr45_2050"	"WC_prec9"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_mr45_2070"	"WC_prec9"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_mr60_2050"	"WC_prec9"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_mr60_2070"	"WC_prec9"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_mr85_2050"	"WC_prec9"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_mr85_2070"	"WC_prec9"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc26_2050"	"WC_tmax1"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc26_2070"	"WC_tmax1"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc45_2050"	"WC_tmax1"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc45_2070"	"WC_tmax1"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc60_2050"	"WC_tmax1"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc60_2070"	"WC_tmax1"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc85_2050"	"WC_tmax1"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc85_2070"	"WC_tmax1"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_he26_2050"	"WC_tmax1"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_he26_2070"	"WC_tmax1"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_he45_2050"	"WC_tmax1"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_he45_2070"	"WC_tmax1"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_he60_2050"	"WC_tmax1"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_he60_2070"	"WC_tmax1"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_he85_2050"	"WC_tmax1"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_he85_2070"	"WC_tmax1"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr26_2050"	"WC_tmax1"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr26_2070"	"WC_tmax1"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr45_2050"	"WC_tmax1"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr45_2070"	"WC_tmax1"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr60_2050"	"WC_tmax1"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr60_2070"	"WC_tmax1"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr85_2050"	"WC_tmax1"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr85_2070"	"WC_tmax1"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc26_2050"	"WC_tmax10"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc26_2070"	"WC_tmax10"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc45_2050"	"WC_tmax10"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc45_2070"	"WC_tmax10"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc60_2050"	"WC_tmax10"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc60_2070"	"WC_tmax10"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc85_2050"	"WC_tmax10"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc85_2070"	"WC_tmax10"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_he26_2050"	"WC_tmax10"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_he26_2070"	"WC_tmax10"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_he45_2050"	"WC_tmax10"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_he45_2070"	"WC_tmax10"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_he60_2050"	"WC_tmax10"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_he60_2070"	"WC_tmax10"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_he85_2050"	"WC_tmax10"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_he85_2070"	"WC_tmax10"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr26_2050"	"WC_tmax10"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr26_2070"	"WC_tmax10"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr45_2050"	"WC_tmax10"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr45_2070"	"WC_tmax10"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr60_2050"	"WC_tmax10"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr60_2070"	"WC_tmax10"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr85_2050"	"WC_tmax10"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr85_2070"	"WC_tmax10"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc26_2050"	"WC_tmax11"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc26_2070"	"WC_tmax11"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc45_2050"	"WC_tmax11"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc45_2070"	"WC_tmax11"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc60_2050"	"WC_tmax11"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc60_2070"	"WC_tmax11"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc85_2050"	"WC_tmax11"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc85_2070"	"WC_tmax11"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_he26_2050"	"WC_tmax11"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_he26_2070"	"WC_tmax11"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_he45_2050"	"WC_tmax11"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_he45_2070"	"WC_tmax11"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_he60_2050"	"WC_tmax11"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_he60_2070"	"WC_tmax11"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_he85_2050"	"WC_tmax11"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_he85_2070"	"WC_tmax11"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr26_2050"	"WC_tmax11"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr26_2070"	"WC_tmax11"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr45_2050"	"WC_tmax11"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr45_2070"	"WC_tmax11"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr60_2050"	"WC_tmax11"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr60_2070"	"WC_tmax11"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr85_2050"	"WC_tmax11"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr85_2070"	"WC_tmax11"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc26_2050"	"WC_tmax12"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc26_2070"	"WC_tmax12"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc45_2050"	"WC_tmax12"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc45_2070"	"WC_tmax12"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc60_2050"	"WC_tmax12"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc60_2070"	"WC_tmax12"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc85_2050"	"WC_tmax12"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc85_2070"	"WC_tmax12"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_he26_2050"	"WC_tmax12"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_he26_2070"	"WC_tmax12"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_he45_2050"	"WC_tmax12"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_he45_2070"	"WC_tmax12"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_he60_2050"	"WC_tmax12"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_he60_2070"	"WC_tmax12"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_he85_2050"	"WC_tmax12"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_he85_2070"	"WC_tmax12"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr26_2050"	"WC_tmax12"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr26_2070"	"WC_tmax12"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr45_2050"	"WC_tmax12"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr45_2070"	"WC_tmax12"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr60_2050"	"WC_tmax12"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr60_2070"	"WC_tmax12"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr85_2050"	"WC_tmax12"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr85_2070"	"WC_tmax12"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc26_2050"	"WC_tmax2"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc26_2070"	"WC_tmax2"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc45_2050"	"WC_tmax2"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc45_2070"	"WC_tmax2"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc60_2050"	"WC_tmax2"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc60_2070"	"WC_tmax2"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc85_2050"	"WC_tmax2"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc85_2070"	"WC_tmax2"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_he26_2050"	"WC_tmax2"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_he26_2070"	"WC_tmax2"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_he45_2050"	"WC_tmax2"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_he45_2070"	"WC_tmax2"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_he60_2050"	"WC_tmax2"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_he60_2070"	"WC_tmax2"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_he85_2050"	"WC_tmax2"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_he85_2070"	"WC_tmax2"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr26_2050"	"WC_tmax2"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr26_2070"	"WC_tmax2"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr45_2050"	"WC_tmax2"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr45_2070"	"WC_tmax2"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr60_2050"	"WC_tmax2"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr60_2070"	"WC_tmax2"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr85_2050"	"WC_tmax2"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr85_2070"	"WC_tmax2"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc26_2050"	"WC_tmax3"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc26_2070"	"WC_tmax3"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc45_2050"	"WC_tmax3"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc45_2070"	"WC_tmax3"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc60_2050"	"WC_tmax3"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc60_2070"	"WC_tmax3"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc85_2050"	"WC_tmax3"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc85_2070"	"WC_tmax3"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_he26_2050"	"WC_tmax3"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_he26_2070"	"WC_tmax3"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_he45_2050"	"WC_tmax3"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_he45_2070"	"WC_tmax3"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_he60_2050"	"WC_tmax3"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_he60_2070"	"WC_tmax3"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_he85_2050"	"WC_tmax3"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_he85_2070"	"WC_tmax3"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr26_2050"	"WC_tmax3"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr26_2070"	"WC_tmax3"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr45_2050"	"WC_tmax3"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr45_2070"	"WC_tmax3"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr60_2050"	"WC_tmax3"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr60_2070"	"WC_tmax3"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr85_2050"	"WC_tmax3"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr85_2070"	"WC_tmax3"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc26_2050"	"WC_tmax4"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc26_2070"	"WC_tmax4"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc45_2050"	"WC_tmax4"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc45_2070"	"WC_tmax4"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc60_2050"	"WC_tmax4"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc60_2070"	"WC_tmax4"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc85_2050"	"WC_tmax4"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc85_2070"	"WC_tmax4"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_he26_2050"	"WC_tmax4"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_he26_2070"	"WC_tmax4"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_he45_2050"	"WC_tmax4"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_he45_2070"	"WC_tmax4"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_he60_2050"	"WC_tmax4"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_he60_2070"	"WC_tmax4"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_he85_2050"	"WC_tmax4"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_he85_2070"	"WC_tmax4"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr26_2050"	"WC_tmax4"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr26_2070"	"WC_tmax4"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr45_2050"	"WC_tmax4"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr45_2070"	"WC_tmax4"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr60_2050"	"WC_tmax4"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr60_2070"	"WC_tmax4"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr85_2050"	"WC_tmax4"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr85_2070"	"WC_tmax4"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc26_2050"	"WC_tmax5"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc26_2070"	"WC_tmax5"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc45_2050"	"WC_tmax5"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc45_2070"	"WC_tmax5"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc60_2050"	"WC_tmax5"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc60_2070"	"WC_tmax5"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc85_2050"	"WC_tmax5"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc85_2070"	"WC_tmax5"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_he26_2050"	"WC_tmax5"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_he26_2070"	"WC_tmax5"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_he45_2050"	"WC_tmax5"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_he45_2070"	"WC_tmax5"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_he60_2050"	"WC_tmax5"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_he60_2070"	"WC_tmax5"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_he85_2050"	"WC_tmax5"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_he85_2070"	"WC_tmax5"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr26_2050"	"WC_tmax5"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr26_2070"	"WC_tmax5"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr45_2050"	"WC_tmax5"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr45_2070"	"WC_tmax5"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr60_2050"	"WC_tmax5"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr60_2070"	"WC_tmax5"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr85_2050"	"WC_tmax5"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr85_2070"	"WC_tmax5"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc26_2050"	"WC_tmax6"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc26_2070"	"WC_tmax6"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc45_2050"	"WC_tmax6"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc45_2070"	"WC_tmax6"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc60_2050"	"WC_tmax6"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc60_2070"	"WC_tmax6"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc85_2050"	"WC_tmax6"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc85_2070"	"WC_tmax6"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_he26_2050"	"WC_tmax6"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_he26_2070"	"WC_tmax6"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_he45_2050"	"WC_tmax6"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_he45_2070"	"WC_tmax6"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_he60_2050"	"WC_tmax6"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_he60_2070"	"WC_tmax6"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_he85_2050"	"WC_tmax6"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_he85_2070"	"WC_tmax6"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr26_2050"	"WC_tmax6"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr26_2070"	"WC_tmax6"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr45_2050"	"WC_tmax6"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr45_2070"	"WC_tmax6"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr60_2050"	"WC_tmax6"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr60_2070"	"WC_tmax6"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr85_2050"	"WC_tmax6"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr85_2070"	"WC_tmax6"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc26_2050"	"WC_tmax7"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc26_2070"	"WC_tmax7"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc45_2050"	"WC_tmax7"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc45_2070"	"WC_tmax7"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc60_2050"	"WC_tmax7"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc60_2070"	"WC_tmax7"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc85_2050"	"WC_tmax7"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc85_2070"	"WC_tmax7"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_he26_2050"	"WC_tmax7"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_he26_2070"	"WC_tmax7"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_he45_2050"	"WC_tmax7"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_he45_2070"	"WC_tmax7"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_he60_2050"	"WC_tmax7"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_he60_2070"	"WC_tmax7"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_he85_2050"	"WC_tmax7"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_he85_2070"	"WC_tmax7"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr26_2050"	"WC_tmax7"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr26_2070"	"WC_tmax7"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr45_2050"	"WC_tmax7"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr45_2070"	"WC_tmax7"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr60_2050"	"WC_tmax7"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr60_2070"	"WC_tmax7"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr85_2050"	"WC_tmax7"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr85_2070"	"WC_tmax7"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc26_2050"	"WC_tmax8"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc26_2070"	"WC_tmax8"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc45_2050"	"WC_tmax8"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc45_2070"	"WC_tmax8"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc60_2050"	"WC_tmax8"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc60_2070"	"WC_tmax8"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc85_2050"	"WC_tmax8"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc85_2070"	"WC_tmax8"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_he26_2050"	"WC_tmax8"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_he26_2070"	"WC_tmax8"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_he45_2050"	"WC_tmax8"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_he45_2070"	"WC_tmax8"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_he60_2050"	"WC_tmax8"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_he60_2070"	"WC_tmax8"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_he85_2050"	"WC_tmax8"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_he85_2070"	"WC_tmax8"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr26_2050"	"WC_tmax8"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr26_2070"	"WC_tmax8"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr45_2050"	"WC_tmax8"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr45_2070"	"WC_tmax8"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr60_2050"	"WC_tmax8"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr60_2070"	"WC_tmax8"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr85_2050"	"WC_tmax8"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr85_2070"	"WC_tmax8"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc26_2050"	"WC_tmax9"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc26_2070"	"WC_tmax9"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc45_2050"	"WC_tmax9"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc45_2070"	"WC_tmax9"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc60_2050"	"WC_tmax9"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc60_2070"	"WC_tmax9"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc85_2050"	"WC_tmax9"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc85_2070"	"WC_tmax9"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_he26_2050"	"WC_tmax9"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_he26_2070"	"WC_tmax9"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_he45_2050"	"WC_tmax9"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_he45_2070"	"WC_tmax9"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_he60_2050"	"WC_tmax9"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_he60_2070"	"WC_tmax9"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_he85_2050"	"WC_tmax9"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_he85_2070"	"WC_tmax9"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr26_2050"	"WC_tmax9"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr26_2070"	"WC_tmax9"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr45_2050"	"WC_tmax9"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr45_2070"	"WC_tmax9"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr60_2050"	"WC_tmax9"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr60_2070"	"WC_tmax9"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr85_2050"	"WC_tmax9"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr85_2070"	"WC_tmax9"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc26_2050"	"WC_tmin1"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc26_2070"	"WC_tmin1"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc45_2050"	"WC_tmin1"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc45_2070"	"WC_tmin1"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc60_2050"	"WC_tmin1"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc60_2070"	"WC_tmin1"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc85_2050"	"WC_tmin1"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc85_2070"	"WC_tmin1"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_he26_2050"	"WC_tmin1"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_he26_2070"	"WC_tmin1"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_he45_2050"	"WC_tmin1"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_he45_2070"	"WC_tmin1"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_he60_2050"	"WC_tmin1"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_he60_2070"	"WC_tmin1"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_he85_2050"	"WC_tmin1"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_he85_2070"	"WC_tmin1"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr26_2050"	"WC_tmin1"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr26_2070"	"WC_tmin1"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr45_2050"	"WC_tmin1"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr45_2070"	"WC_tmin1"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr60_2050"	"WC_tmin1"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr60_2070"	"WC_tmin1"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr85_2050"	"WC_tmin1"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr85_2070"	"WC_tmin1"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc26_2050"	"WC_tmin10"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc26_2070"	"WC_tmin10"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc45_2050"	"WC_tmin10"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc45_2070"	"WC_tmin10"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc60_2050"	"WC_tmin10"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc60_2070"	"WC_tmin10"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc85_2050"	"WC_tmin10"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc85_2070"	"WC_tmin10"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_he26_2050"	"WC_tmin10"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_he26_2070"	"WC_tmin10"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_he45_2050"	"WC_tmin10"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_he45_2070"	"WC_tmin10"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_he60_2050"	"WC_tmin10"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_he60_2070"	"WC_tmin10"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_he85_2050"	"WC_tmin10"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_he85_2070"	"WC_tmin10"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr26_2050"	"WC_tmin10"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr26_2070"	"WC_tmin10"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr45_2050"	"WC_tmin10"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr45_2070"	"WC_tmin10"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr60_2050"	"WC_tmin10"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr60_2070"	"WC_tmin10"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr85_2050"	"WC_tmin10"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr85_2070"	"WC_tmin10"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc26_2050"	"WC_tmin11"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc26_2070"	"WC_tmin11"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc45_2050"	"WC_tmin11"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc45_2070"	"WC_tmin11"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc60_2050"	"WC_tmin11"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc60_2070"	"WC_tmin11"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc85_2050"	"WC_tmin11"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc85_2070"	"WC_tmin11"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_he26_2050"	"WC_tmin11"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_he26_2070"	"WC_tmin11"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_he45_2050"	"WC_tmin11"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_he45_2070"	"WC_tmin11"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_he60_2050"	"WC_tmin11"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_he60_2070"	"WC_tmin11"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_he85_2050"	"WC_tmin11"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_he85_2070"	"WC_tmin11"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr26_2050"	"WC_tmin11"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr26_2070"	"WC_tmin11"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr45_2050"	"WC_tmin11"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr45_2070"	"WC_tmin11"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr60_2050"	"WC_tmin11"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr60_2070"	"WC_tmin11"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr85_2050"	"WC_tmin11"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr85_2070"	"WC_tmin11"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc26_2050"	"WC_tmin12"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc26_2070"	"WC_tmin12"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc45_2050"	"WC_tmin12"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc45_2070"	"WC_tmin12"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc60_2050"	"WC_tmin12"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc60_2070"	"WC_tmin12"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc85_2050"	"WC_tmin12"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc85_2070"	"WC_tmin12"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_he26_2050"	"WC_tmin12"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_he26_2070"	"WC_tmin12"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_he45_2050"	"WC_tmin12"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_he45_2070"	"WC_tmin12"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_he60_2050"	"WC_tmin12"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_he60_2070"	"WC_tmin12"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_he85_2050"	"WC_tmin12"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_he85_2070"	"WC_tmin12"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr26_2050"	"WC_tmin12"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr26_2070"	"WC_tmin12"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr45_2050"	"WC_tmin12"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr45_2070"	"WC_tmin12"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr60_2050"	"WC_tmin12"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr60_2070"	"WC_tmin12"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr85_2050"	"WC_tmin12"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr85_2070"	"WC_tmin12"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc26_2050"	"WC_tmin2"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc26_2070"	"WC_tmin2"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc45_2050"	"WC_tmin2"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc45_2070"	"WC_tmin2"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc60_2050"	"WC_tmin2"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc60_2070"	"WC_tmin2"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc85_2050"	"WC_tmin2"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc85_2070"	"WC_tmin2"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_he26_2050"	"WC_tmin2"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_he26_2070"	"WC_tmin2"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_he45_2050"	"WC_tmin2"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_he45_2070"	"WC_tmin2"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_he60_2050"	"WC_tmin2"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_he60_2070"	"WC_tmin2"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_he85_2050"	"WC_tmin2"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_he85_2070"	"WC_tmin2"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr26_2050"	"WC_tmin2"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr26_2070"	"WC_tmin2"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr45_2050"	"WC_tmin2"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr45_2070"	"WC_tmin2"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr60_2050"	"WC_tmin2"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr60_2070"	"WC_tmin2"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr85_2050"	"WC_tmin2"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr85_2070"	"WC_tmin2"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc26_2050"	"WC_tmin3"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc26_2070"	"WC_tmin3"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc45_2050"	"WC_tmin3"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc45_2070"	"WC_tmin3"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc60_2050"	"WC_tmin3"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc60_2070"	"WC_tmin3"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc85_2050"	"WC_tmin3"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc85_2070"	"WC_tmin3"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_he26_2050"	"WC_tmin3"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_he26_2070"	"WC_tmin3"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_he45_2050"	"WC_tmin3"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_he45_2070"	"WC_tmin3"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_he60_2050"	"WC_tmin3"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_he60_2070"	"WC_tmin3"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_he85_2050"	"WC_tmin3"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_he85_2070"	"WC_tmin3"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr26_2050"	"WC_tmin3"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr26_2070"	"WC_tmin3"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr45_2050"	"WC_tmin3"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr45_2070"	"WC_tmin3"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr60_2050"	"WC_tmin3"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr60_2070"	"WC_tmin3"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr85_2050"	"WC_tmin3"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr85_2070"	"WC_tmin3"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc26_2050"	"WC_tmin4"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc26_2070"	"WC_tmin4"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc45_2050"	"WC_tmin4"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc45_2070"	"WC_tmin4"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc60_2050"	"WC_tmin4"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc60_2070"	"WC_tmin4"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc85_2050"	"WC_tmin4"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc85_2070"	"WC_tmin4"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_he26_2050"	"WC_tmin4"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_he26_2070"	"WC_tmin4"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_he45_2050"	"WC_tmin4"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_he45_2070"	"WC_tmin4"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_he60_2050"	"WC_tmin4"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_he60_2070"	"WC_tmin4"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_he85_2050"	"WC_tmin4"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_he85_2070"	"WC_tmin4"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr26_2050"	"WC_tmin4"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr26_2070"	"WC_tmin4"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr45_2050"	"WC_tmin4"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr45_2070"	"WC_tmin4"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr60_2050"	"WC_tmin4"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr60_2070"	"WC_tmin4"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr85_2050"	"WC_tmin4"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr85_2070"	"WC_tmin4"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc26_2050"	"WC_tmin5"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc26_2070"	"WC_tmin5"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc45_2050"	"WC_tmin5"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc45_2070"	"WC_tmin5"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc60_2050"	"WC_tmin5"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc60_2070"	"WC_tmin5"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc85_2050"	"WC_tmin5"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc85_2070"	"WC_tmin5"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_he26_2050"	"WC_tmin5"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_he26_2070"	"WC_tmin5"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_he45_2050"	"WC_tmin5"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_he45_2070"	"WC_tmin5"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_he60_2050"	"WC_tmin5"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_he60_2070"	"WC_tmin5"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_he85_2050"	"WC_tmin5"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_he85_2070"	"WC_tmin5"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr26_2050"	"WC_tmin5"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr26_2070"	"WC_tmin5"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr45_2050"	"WC_tmin5"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr45_2070"	"WC_tmin5"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr60_2050"	"WC_tmin5"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr60_2070"	"WC_tmin5"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr85_2050"	"WC_tmin5"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr85_2070"	"WC_tmin5"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc26_2050"	"WC_tmin6"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc26_2070"	"WC_tmin6"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc45_2050"	"WC_tmin6"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc45_2070"	"WC_tmin6"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc60_2050"	"WC_tmin6"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc60_2070"	"WC_tmin6"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc85_2050"	"WC_tmin6"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc85_2070"	"WC_tmin6"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_he26_2050"	"WC_tmin6"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_he26_2070"	"WC_tmin6"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_he45_2050"	"WC_tmin6"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_he45_2070"	"WC_tmin6"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_he60_2050"	"WC_tmin6"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_he60_2070"	"WC_tmin6"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_he85_2050"	"WC_tmin6"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_he85_2070"	"WC_tmin6"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr26_2050"	"WC_tmin6"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr26_2070"	"WC_tmin6"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr45_2050"	"WC_tmin6"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr45_2070"	"WC_tmin6"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr60_2050"	"WC_tmin6"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr60_2070"	"WC_tmin6"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr85_2050"	"WC_tmin6"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr85_2070"	"WC_tmin6"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc26_2050"	"WC_tmin7"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc26_2070"	"WC_tmin7"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc45_2050"	"WC_tmin7"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc45_2070"	"WC_tmin7"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc60_2050"	"WC_tmin7"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc60_2070"	"WC_tmin7"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc85_2050"	"WC_tmin7"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc85_2070"	"WC_tmin7"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_he26_2050"	"WC_tmin7"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_he26_2070"	"WC_tmin7"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_he45_2050"	"WC_tmin7"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_he45_2070"	"WC_tmin7"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_he60_2050"	"WC_tmin7"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_he60_2070"	"WC_tmin7"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_he85_2050"	"WC_tmin7"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_he85_2070"	"WC_tmin7"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr26_2050"	"WC_tmin7"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr26_2070"	"WC_tmin7"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr45_2050"	"WC_tmin7"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr45_2070"	"WC_tmin7"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr60_2050"	"WC_tmin7"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr60_2070"	"WC_tmin7"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr85_2050"	"WC_tmin7"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr85_2070"	"WC_tmin7"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc26_2050"	"WC_tmin8"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc26_2070"	"WC_tmin8"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc45_2050"	"WC_tmin8"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc45_2070"	"WC_tmin8"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc60_2050"	"WC_tmin8"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc60_2070"	"WC_tmin8"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc85_2050"	"WC_tmin8"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc85_2070"	"WC_tmin8"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_he26_2050"	"WC_tmin8"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_he26_2070"	"WC_tmin8"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_he45_2050"	"WC_tmin8"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_he45_2070"	"WC_tmin8"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_he60_2050"	"WC_tmin8"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_he60_2070"	"WC_tmin8"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_he85_2050"	"WC_tmin8"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_he85_2070"	"WC_tmin8"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr26_2050"	"WC_tmin8"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr26_2070"	"WC_tmin8"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr45_2050"	"WC_tmin8"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr45_2070"	"WC_tmin8"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr60_2050"	"WC_tmin8"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr60_2070"	"WC_tmin8"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr85_2050"	"WC_tmin8"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr85_2070"	"WC_tmin8"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc26_2050"	"WC_tmin9"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc26_2070"	"WC_tmin9"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc45_2050"	"WC_tmin9"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc45_2070"	"WC_tmin9"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc60_2050"	"WC_tmin9"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc60_2070"	"WC_tmin9"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc85_2050"	"WC_tmin9"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc85_2070"	"WC_tmin9"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_he26_2050"	"WC_tmin9"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_he26_2070"	"WC_tmin9"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_he45_2050"	"WC_tmin9"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_he45_2070"	"WC_tmin9"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_he60_2050"	"WC_tmin9"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_he60_2070"	"WC_tmin9"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_he85_2050"	"WC_tmin9"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_he85_2070"	"WC_tmin9"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr26_2050"	"WC_tmin9"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr26_2070"	"WC_tmin9"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr45_2050"	"WC_tmin9"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr45_2070"	"WC_tmin9"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr60_2050"	"WC_tmin9"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr60_2070"	"WC_tmin9"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr85_2050"	"WC_tmin9"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr85_2070"	"WC_tmin9"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr85_2070_lonlat.tif"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/2_data_future.tsv	Mon Apr 08 16:33:11 2024 +0000
@@ -0,0 +1,1321 @@
+"dataset_code"	"layer_code"	"current_layer_code"	"model"	"scenario"	"year"	"version"	"layer_url"
+"WorldClim"	"WC_bio1_cc26_2050"	"WC_bio1"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_cc26_2070"	"WC_bio1"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_cc45_2050"	"WC_bio1"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_cc45_2070"	"WC_bio1"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_cc60_2050"	"WC_bio1"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_cc60_2070"	"WC_bio1"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_cc85_2050"	"WC_bio1"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_cc85_2070"	"WC_bio1"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_he26_2050"	"WC_bio1"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_he26_2070"	"WC_bio1"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_he45_2050"	"WC_bio1"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_he45_2070"	"WC_bio1"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_he60_2050"	"WC_bio1"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_he60_2070"	"WC_bio1"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_he85_2050"	"WC_bio1"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_he85_2070"	"WC_bio1"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_mr26_2050"	"WC_bio1"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_mr26_2070"	"WC_bio1"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_mr45_2050"	"WC_bio1"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_mr45_2070"	"WC_bio1"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_mr60_2050"	"WC_bio1"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_mr60_2070"	"WC_bio1"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio1_mr85_2050"	"WC_bio1"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio1_mr85_2070"	"WC_bio1"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio1_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_cc26_2050"	"WC_bio10"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_cc26_2070"	"WC_bio10"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_cc45_2050"	"WC_bio10"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_cc45_2070"	"WC_bio10"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_cc60_2050"	"WC_bio10"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_cc60_2070"	"WC_bio10"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_cc85_2050"	"WC_bio10"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_cc85_2070"	"WC_bio10"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_he26_2050"	"WC_bio10"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_he26_2070"	"WC_bio10"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_he45_2050"	"WC_bio10"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_he45_2070"	"WC_bio10"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_he60_2050"	"WC_bio10"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_he60_2070"	"WC_bio10"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_he85_2050"	"WC_bio10"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_he85_2070"	"WC_bio10"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_mr26_2050"	"WC_bio10"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_mr26_2070"	"WC_bio10"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_mr45_2050"	"WC_bio10"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_mr45_2070"	"WC_bio10"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_mr60_2050"	"WC_bio10"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_mr60_2070"	"WC_bio10"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio10_mr85_2050"	"WC_bio10"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio10_mr85_2070"	"WC_bio10"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio10_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_cc26_2050"	"WC_bio11"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_cc26_2070"	"WC_bio11"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_cc45_2050"	"WC_bio11"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_cc45_2070"	"WC_bio11"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_cc60_2050"	"WC_bio11"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_cc60_2070"	"WC_bio11"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_cc85_2050"	"WC_bio11"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_cc85_2070"	"WC_bio11"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_he26_2050"	"WC_bio11"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_he26_2070"	"WC_bio11"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_he45_2050"	"WC_bio11"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_he45_2070"	"WC_bio11"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_he60_2050"	"WC_bio11"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_he60_2070"	"WC_bio11"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_he85_2050"	"WC_bio11"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_he85_2070"	"WC_bio11"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_mr26_2050"	"WC_bio11"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_mr26_2070"	"WC_bio11"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_mr45_2050"	"WC_bio11"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_mr45_2070"	"WC_bio11"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_mr60_2050"	"WC_bio11"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_mr60_2070"	"WC_bio11"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio11_mr85_2050"	"WC_bio11"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio11_mr85_2070"	"WC_bio11"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio11_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_cc26_2050"	"WC_bio12"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_cc26_2070"	"WC_bio12"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_cc45_2050"	"WC_bio12"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_cc45_2070"	"WC_bio12"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_cc60_2050"	"WC_bio12"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_cc60_2070"	"WC_bio12"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_cc85_2050"	"WC_bio12"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_cc85_2070"	"WC_bio12"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_he26_2050"	"WC_bio12"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_he26_2070"	"WC_bio12"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_he45_2050"	"WC_bio12"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_he45_2070"	"WC_bio12"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_he60_2050"	"WC_bio12"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_he60_2070"	"WC_bio12"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_he85_2050"	"WC_bio12"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_he85_2070"	"WC_bio12"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_mr26_2050"	"WC_bio12"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_mr26_2070"	"WC_bio12"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_mr45_2050"	"WC_bio12"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_mr45_2070"	"WC_bio12"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_mr60_2050"	"WC_bio12"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_mr60_2070"	"WC_bio12"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio12_mr85_2050"	"WC_bio12"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio12_mr85_2070"	"WC_bio12"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio12_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_cc26_2050"	"WC_bio13"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_cc26_2070"	"WC_bio13"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_cc45_2050"	"WC_bio13"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_cc45_2070"	"WC_bio13"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_cc60_2050"	"WC_bio13"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_cc60_2070"	"WC_bio13"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_cc85_2050"	"WC_bio13"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_cc85_2070"	"WC_bio13"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_he26_2050"	"WC_bio13"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_he26_2070"	"WC_bio13"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_he45_2050"	"WC_bio13"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_he45_2070"	"WC_bio13"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_he60_2050"	"WC_bio13"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_he60_2070"	"WC_bio13"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_he85_2050"	"WC_bio13"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_he85_2070"	"WC_bio13"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_mr26_2050"	"WC_bio13"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_mr26_2070"	"WC_bio13"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_mr45_2050"	"WC_bio13"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_mr45_2070"	"WC_bio13"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_mr60_2050"	"WC_bio13"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_mr60_2070"	"WC_bio13"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio13_mr85_2050"	"WC_bio13"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio13_mr85_2070"	"WC_bio13"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio13_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_cc26_2050"	"WC_bio14"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_cc26_2070"	"WC_bio14"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_cc45_2050"	"WC_bio14"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_cc45_2070"	"WC_bio14"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_cc60_2050"	"WC_bio14"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_cc60_2070"	"WC_bio14"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_cc85_2050"	"WC_bio14"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_cc85_2070"	"WC_bio14"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_he26_2050"	"WC_bio14"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_he26_2070"	"WC_bio14"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_he45_2050"	"WC_bio14"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_he45_2070"	"WC_bio14"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_he60_2050"	"WC_bio14"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_he60_2070"	"WC_bio14"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_he85_2050"	"WC_bio14"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_he85_2070"	"WC_bio14"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_mr26_2050"	"WC_bio14"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_mr26_2070"	"WC_bio14"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_mr45_2050"	"WC_bio14"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_mr45_2070"	"WC_bio14"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_mr60_2050"	"WC_bio14"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_mr60_2070"	"WC_bio14"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio14_mr85_2050"	"WC_bio14"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio14_mr85_2070"	"WC_bio14"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio14_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_cc26_2050"	"WC_bio15"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_cc26_2070"	"WC_bio15"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_cc45_2050"	"WC_bio15"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_cc45_2070"	"WC_bio15"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_cc60_2050"	"WC_bio15"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_cc60_2070"	"WC_bio15"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_cc85_2050"	"WC_bio15"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_cc85_2070"	"WC_bio15"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_he26_2050"	"WC_bio15"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_he26_2070"	"WC_bio15"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_he45_2050"	"WC_bio15"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_he45_2070"	"WC_bio15"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_he60_2050"	"WC_bio15"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_he60_2070"	"WC_bio15"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_he85_2050"	"WC_bio15"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_he85_2070"	"WC_bio15"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_mr26_2050"	"WC_bio15"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_mr26_2070"	"WC_bio15"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_mr45_2050"	"WC_bio15"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_mr45_2070"	"WC_bio15"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_mr60_2050"	"WC_bio15"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_mr60_2070"	"WC_bio15"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio15_mr85_2050"	"WC_bio15"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio15_mr85_2070"	"WC_bio15"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio15_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_cc26_2050"	"WC_bio16"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_cc26_2070"	"WC_bio16"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_cc45_2050"	"WC_bio16"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_cc45_2070"	"WC_bio16"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_cc60_2050"	"WC_bio16"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_cc60_2070"	"WC_bio16"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_cc85_2050"	"WC_bio16"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_cc85_2070"	"WC_bio16"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_he26_2050"	"WC_bio16"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_he26_2070"	"WC_bio16"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_he45_2050"	"WC_bio16"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_he45_2070"	"WC_bio16"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_he60_2050"	"WC_bio16"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_he60_2070"	"WC_bio16"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_he85_2050"	"WC_bio16"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_he85_2070"	"WC_bio16"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_mr26_2050"	"WC_bio16"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_mr26_2070"	"WC_bio16"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_mr45_2050"	"WC_bio16"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_mr45_2070"	"WC_bio16"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_mr60_2050"	"WC_bio16"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_mr60_2070"	"WC_bio16"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio16_mr85_2050"	"WC_bio16"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio16_mr85_2070"	"WC_bio16"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio16_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_cc26_2050"	"WC_bio17"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_cc26_2070"	"WC_bio17"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_cc45_2050"	"WC_bio17"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_cc45_2070"	"WC_bio17"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_cc60_2050"	"WC_bio17"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_cc60_2070"	"WC_bio17"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_cc85_2050"	"WC_bio17"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_cc85_2070"	"WC_bio17"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_he26_2050"	"WC_bio17"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_he26_2070"	"WC_bio17"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_he45_2050"	"WC_bio17"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_he45_2070"	"WC_bio17"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_he60_2050"	"WC_bio17"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_he60_2070"	"WC_bio17"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_he85_2050"	"WC_bio17"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_he85_2070"	"WC_bio17"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_mr26_2050"	"WC_bio17"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_mr26_2070"	"WC_bio17"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_mr45_2050"	"WC_bio17"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_mr45_2070"	"WC_bio17"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_mr60_2050"	"WC_bio17"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_mr60_2070"	"WC_bio17"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio17_mr85_2050"	"WC_bio17"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio17_mr85_2070"	"WC_bio17"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio17_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_cc26_2050"	"WC_bio18"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_cc26_2070"	"WC_bio18"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_cc45_2050"	"WC_bio18"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_cc45_2070"	"WC_bio18"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_cc60_2050"	"WC_bio18"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_cc60_2070"	"WC_bio18"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_cc85_2050"	"WC_bio18"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_cc85_2070"	"WC_bio18"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_he26_2050"	"WC_bio18"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_he26_2070"	"WC_bio18"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_he45_2050"	"WC_bio18"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_he45_2070"	"WC_bio18"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_he60_2050"	"WC_bio18"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_he60_2070"	"WC_bio18"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_he85_2050"	"WC_bio18"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_he85_2070"	"WC_bio18"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_mr26_2050"	"WC_bio18"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_mr26_2070"	"WC_bio18"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_mr45_2050"	"WC_bio18"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_mr45_2070"	"WC_bio18"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_mr60_2050"	"WC_bio18"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_mr60_2070"	"WC_bio18"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio18_mr85_2050"	"WC_bio18"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio18_mr85_2070"	"WC_bio18"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio18_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_cc26_2050"	"WC_bio19"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_cc26_2070"	"WC_bio19"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_cc45_2050"	"WC_bio19"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_cc45_2070"	"WC_bio19"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_cc60_2050"	"WC_bio19"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_cc60_2070"	"WC_bio19"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_cc85_2050"	"WC_bio19"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_cc85_2070"	"WC_bio19"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_he26_2050"	"WC_bio19"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_he26_2070"	"WC_bio19"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_he45_2050"	"WC_bio19"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_he45_2070"	"WC_bio19"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_he60_2050"	"WC_bio19"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_he60_2070"	"WC_bio19"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_he85_2050"	"WC_bio19"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_he85_2070"	"WC_bio19"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_mr26_2050"	"WC_bio19"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_mr26_2070"	"WC_bio19"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_mr45_2050"	"WC_bio19"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_mr45_2070"	"WC_bio19"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_mr60_2050"	"WC_bio19"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_mr60_2070"	"WC_bio19"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio19_mr85_2050"	"WC_bio19"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio19_mr85_2070"	"WC_bio19"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio19_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_cc26_2050"	"WC_bio2"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_cc26_2070"	"WC_bio2"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_cc45_2050"	"WC_bio2"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_cc45_2070"	"WC_bio2"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_cc60_2050"	"WC_bio2"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_cc60_2070"	"WC_bio2"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_cc85_2050"	"WC_bio2"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_cc85_2070"	"WC_bio2"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_he26_2050"	"WC_bio2"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_he26_2070"	"WC_bio2"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_he45_2050"	"WC_bio2"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_he45_2070"	"WC_bio2"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_he60_2050"	"WC_bio2"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_he60_2070"	"WC_bio2"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_he85_2050"	"WC_bio2"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_he85_2070"	"WC_bio2"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_mr26_2050"	"WC_bio2"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_mr26_2070"	"WC_bio2"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_mr45_2050"	"WC_bio2"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_mr45_2070"	"WC_bio2"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_mr60_2050"	"WC_bio2"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_mr60_2070"	"WC_bio2"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio2_mr85_2050"	"WC_bio2"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio2_mr85_2070"	"WC_bio2"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio2_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_cc26_2050"	"WC_bio3"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_cc26_2070"	"WC_bio3"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_cc45_2050"	"WC_bio3"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_cc45_2070"	"WC_bio3"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_cc60_2050"	"WC_bio3"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_cc60_2070"	"WC_bio3"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_cc85_2050"	"WC_bio3"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_cc85_2070"	"WC_bio3"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_he26_2050"	"WC_bio3"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_he26_2070"	"WC_bio3"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_he45_2050"	"WC_bio3"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_he45_2070"	"WC_bio3"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_he60_2050"	"WC_bio3"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_he60_2070"	"WC_bio3"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_he85_2050"	"WC_bio3"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_he85_2070"	"WC_bio3"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_mr26_2050"	"WC_bio3"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_mr26_2070"	"WC_bio3"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_mr45_2050"	"WC_bio3"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_mr45_2070"	"WC_bio3"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_mr60_2050"	"WC_bio3"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_mr60_2070"	"WC_bio3"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio3_mr85_2050"	"WC_bio3"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio3_mr85_2070"	"WC_bio3"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio3_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_cc26_2050"	"WC_bio4"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_cc26_2070"	"WC_bio4"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_cc45_2050"	"WC_bio4"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_cc45_2070"	"WC_bio4"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_cc60_2050"	"WC_bio4"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_cc60_2070"	"WC_bio4"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_cc85_2050"	"WC_bio4"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_cc85_2070"	"WC_bio4"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_he26_2050"	"WC_bio4"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_he26_2070"	"WC_bio4"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_he45_2050"	"WC_bio4"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_he45_2070"	"WC_bio4"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_he60_2050"	"WC_bio4"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_he60_2070"	"WC_bio4"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_he85_2050"	"WC_bio4"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_he85_2070"	"WC_bio4"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_mr26_2050"	"WC_bio4"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_mr26_2070"	"WC_bio4"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_mr45_2050"	"WC_bio4"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_mr45_2070"	"WC_bio4"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_mr60_2050"	"WC_bio4"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_mr60_2070"	"WC_bio4"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio4_mr85_2050"	"WC_bio4"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio4_mr85_2070"	"WC_bio4"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio4_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_cc26_2050"	"WC_bio5"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_cc26_2070"	"WC_bio5"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_cc45_2050"	"WC_bio5"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_cc45_2070"	"WC_bio5"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_cc60_2050"	"WC_bio5"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_cc60_2070"	"WC_bio5"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_cc85_2050"	"WC_bio5"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_cc85_2070"	"WC_bio5"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_he26_2050"	"WC_bio5"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_he26_2070"	"WC_bio5"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_he45_2050"	"WC_bio5"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_he45_2070"	"WC_bio5"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_he60_2050"	"WC_bio5"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_he60_2070"	"WC_bio5"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_he85_2050"	"WC_bio5"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_he85_2070"	"WC_bio5"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_mr26_2050"	"WC_bio5"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_mr26_2070"	"WC_bio5"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_mr45_2050"	"WC_bio5"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_mr45_2070"	"WC_bio5"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_mr60_2050"	"WC_bio5"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_mr60_2070"	"WC_bio5"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio5_mr85_2050"	"WC_bio5"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio5_mr85_2070"	"WC_bio5"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio5_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_cc26_2050"	"WC_bio6"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_cc26_2070"	"WC_bio6"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_cc45_2050"	"WC_bio6"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_cc45_2070"	"WC_bio6"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_cc60_2050"	"WC_bio6"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_cc60_2070"	"WC_bio6"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_cc85_2050"	"WC_bio6"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_cc85_2070"	"WC_bio6"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_he26_2050"	"WC_bio6"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_he26_2070"	"WC_bio6"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_he45_2050"	"WC_bio6"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_he45_2070"	"WC_bio6"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_he60_2050"	"WC_bio6"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_he60_2070"	"WC_bio6"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_he85_2050"	"WC_bio6"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_he85_2070"	"WC_bio6"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_mr26_2050"	"WC_bio6"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_mr26_2070"	"WC_bio6"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_mr45_2050"	"WC_bio6"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_mr45_2070"	"WC_bio6"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_mr60_2050"	"WC_bio6"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_mr60_2070"	"WC_bio6"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio6_mr85_2050"	"WC_bio6"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio6_mr85_2070"	"WC_bio6"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio6_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_cc26_2050"	"WC_bio7"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_cc26_2070"	"WC_bio7"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_cc45_2050"	"WC_bio7"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_cc45_2070"	"WC_bio7"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_cc60_2050"	"WC_bio7"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_cc60_2070"	"WC_bio7"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_cc85_2050"	"WC_bio7"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_cc85_2070"	"WC_bio7"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_he26_2050"	"WC_bio7"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_he26_2070"	"WC_bio7"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_he45_2050"	"WC_bio7"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_he45_2070"	"WC_bio7"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_he60_2050"	"WC_bio7"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_he60_2070"	"WC_bio7"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_he85_2050"	"WC_bio7"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_he85_2070"	"WC_bio7"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_mr26_2050"	"WC_bio7"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_mr26_2070"	"WC_bio7"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_mr45_2050"	"WC_bio7"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_mr45_2070"	"WC_bio7"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_mr60_2050"	"WC_bio7"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_mr60_2070"	"WC_bio7"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio7_mr85_2050"	"WC_bio7"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio7_mr85_2070"	"WC_bio7"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio7_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_cc26_2050"	"WC_bio8"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_cc26_2070"	"WC_bio8"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_cc45_2050"	"WC_bio8"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_cc45_2070"	"WC_bio8"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_cc60_2050"	"WC_bio8"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_cc60_2070"	"WC_bio8"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_cc85_2050"	"WC_bio8"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_cc85_2070"	"WC_bio8"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_he26_2050"	"WC_bio8"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_he26_2070"	"WC_bio8"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_he45_2050"	"WC_bio8"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_he45_2070"	"WC_bio8"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_he60_2050"	"WC_bio8"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_he60_2070"	"WC_bio8"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_he85_2050"	"WC_bio8"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_he85_2070"	"WC_bio8"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_mr26_2050"	"WC_bio8"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_mr26_2070"	"WC_bio8"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_mr45_2050"	"WC_bio8"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_mr45_2070"	"WC_bio8"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_mr60_2050"	"WC_bio8"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_mr60_2070"	"WC_bio8"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio8_mr85_2050"	"WC_bio8"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio8_mr85_2070"	"WC_bio8"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio8_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_cc26_2050"	"WC_bio9"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_cc26_2070"	"WC_bio9"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_cc45_2050"	"WC_bio9"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_cc45_2070"	"WC_bio9"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_cc60_2050"	"WC_bio9"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_cc60_2070"	"WC_bio9"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_cc85_2050"	"WC_bio9"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_cc85_2070"	"WC_bio9"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_he26_2050"	"WC_bio9"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he26_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_he26_2070"	"WC_bio9"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he26_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_he45_2050"	"WC_bio9"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he45_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_he45_2070"	"WC_bio9"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he45_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_he60_2050"	"WC_bio9"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he60_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_he60_2070"	"WC_bio9"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he60_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_he85_2050"	"WC_bio9"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he85_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_he85_2070"	"WC_bio9"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_he85_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_mr26_2050"	"WC_bio9"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_mr26_2070"	"WC_bio9"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_mr45_2050"	"WC_bio9"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_mr45_2070"	"WC_bio9"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_mr60_2050"	"WC_bio9"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_mr60_2070"	"WC_bio9"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_bio9_mr85_2050"	"WC_bio9"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_bio9_mr85_2070"	"WC_bio9"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_bio9_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_cc26_2050"	"WC_prec1"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_cc26_2070"	"WC_prec1"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_cc45_2050"	"WC_prec1"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_cc45_2070"	"WC_prec1"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_cc60_2050"	"WC_prec1"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_cc60_2070"	"WC_prec1"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_cc85_2050"	"WC_prec1"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_cc85_2070"	"WC_prec1"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_he26_2050"	"WC_prec1"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_he26_2070"	"WC_prec1"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_he45_2050"	"WC_prec1"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_he45_2070"	"WC_prec1"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_he60_2050"	"WC_prec1"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_he60_2070"	"WC_prec1"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_he85_2050"	"WC_prec1"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_he85_2070"	"WC_prec1"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_mr26_2050"	"WC_prec1"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_mr26_2070"	"WC_prec1"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_mr45_2050"	"WC_prec1"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_mr45_2070"	"WC_prec1"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_mr60_2050"	"WC_prec1"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_mr60_2070"	"WC_prec1"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec1_mr85_2050"	"WC_prec1"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec1_mr85_2070"	"WC_prec1"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec1_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_cc26_2050"	"WC_prec10"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_cc26_2070"	"WC_prec10"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_cc45_2050"	"WC_prec10"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_cc45_2070"	"WC_prec10"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_cc60_2050"	"WC_prec10"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_cc60_2070"	"WC_prec10"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_cc85_2050"	"WC_prec10"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_cc85_2070"	"WC_prec10"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_he26_2050"	"WC_prec10"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_he26_2070"	"WC_prec10"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_he45_2050"	"WC_prec10"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_he45_2070"	"WC_prec10"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_he60_2050"	"WC_prec10"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_he60_2070"	"WC_prec10"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_he85_2050"	"WC_prec10"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_he85_2070"	"WC_prec10"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_mr26_2050"	"WC_prec10"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_mr26_2070"	"WC_prec10"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_mr45_2050"	"WC_prec10"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_mr45_2070"	"WC_prec10"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_mr60_2050"	"WC_prec10"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_mr60_2070"	"WC_prec10"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec10_mr85_2050"	"WC_prec10"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec10_mr85_2070"	"WC_prec10"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec10_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_cc26_2050"	"WC_prec11"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_cc26_2070"	"WC_prec11"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_cc45_2050"	"WC_prec11"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_cc45_2070"	"WC_prec11"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_cc60_2050"	"WC_prec11"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_cc60_2070"	"WC_prec11"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_cc85_2050"	"WC_prec11"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_cc85_2070"	"WC_prec11"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_he26_2050"	"WC_prec11"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_he26_2070"	"WC_prec11"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_he45_2050"	"WC_prec11"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_he45_2070"	"WC_prec11"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_he60_2050"	"WC_prec11"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_he60_2070"	"WC_prec11"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_he85_2050"	"WC_prec11"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_he85_2070"	"WC_prec11"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_mr26_2050"	"WC_prec11"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_mr26_2070"	"WC_prec11"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_mr45_2050"	"WC_prec11"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_mr45_2070"	"WC_prec11"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_mr60_2050"	"WC_prec11"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_mr60_2070"	"WC_prec11"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec11_mr85_2050"	"WC_prec11"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec11_mr85_2070"	"WC_prec11"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec11_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_cc26_2050"	"WC_prec12"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_cc26_2070"	"WC_prec12"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_cc45_2050"	"WC_prec12"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_cc45_2070"	"WC_prec12"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_cc60_2050"	"WC_prec12"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_cc60_2070"	"WC_prec12"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_cc85_2050"	"WC_prec12"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_cc85_2070"	"WC_prec12"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_he26_2050"	"WC_prec12"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_he26_2070"	"WC_prec12"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_he45_2050"	"WC_prec12"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_he45_2070"	"WC_prec12"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_he60_2050"	"WC_prec12"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_he60_2070"	"WC_prec12"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_he85_2050"	"WC_prec12"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_he85_2070"	"WC_prec12"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_mr26_2050"	"WC_prec12"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_mr26_2070"	"WC_prec12"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_mr45_2050"	"WC_prec12"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_mr45_2070"	"WC_prec12"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_mr60_2050"	"WC_prec12"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_mr60_2070"	"WC_prec12"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec12_mr85_2050"	"WC_prec12"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec12_mr85_2070"	"WC_prec12"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec12_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_cc26_2050"	"WC_prec2"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_cc26_2070"	"WC_prec2"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_cc45_2050"	"WC_prec2"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_cc45_2070"	"WC_prec2"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_cc60_2050"	"WC_prec2"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_cc60_2070"	"WC_prec2"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_cc85_2050"	"WC_prec2"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_cc85_2070"	"WC_prec2"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_he26_2050"	"WC_prec2"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_he26_2070"	"WC_prec2"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_he45_2050"	"WC_prec2"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_he45_2070"	"WC_prec2"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_he60_2050"	"WC_prec2"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_he60_2070"	"WC_prec2"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_he85_2050"	"WC_prec2"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_he85_2070"	"WC_prec2"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_mr26_2050"	"WC_prec2"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_mr26_2070"	"WC_prec2"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_mr45_2050"	"WC_prec2"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_mr45_2070"	"WC_prec2"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_mr60_2050"	"WC_prec2"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_mr60_2070"	"WC_prec2"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec2_mr85_2050"	"WC_prec2"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec2_mr85_2070"	"WC_prec2"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec2_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_cc26_2050"	"WC_prec3"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_cc26_2070"	"WC_prec3"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_cc45_2050"	"WC_prec3"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_cc45_2070"	"WC_prec3"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_cc60_2050"	"WC_prec3"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_cc60_2070"	"WC_prec3"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_cc85_2050"	"WC_prec3"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_cc85_2070"	"WC_prec3"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_he26_2050"	"WC_prec3"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_he26_2070"	"WC_prec3"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_he45_2050"	"WC_prec3"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_he45_2070"	"WC_prec3"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_he60_2050"	"WC_prec3"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_he60_2070"	"WC_prec3"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_he85_2050"	"WC_prec3"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_he85_2070"	"WC_prec3"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_mr26_2050"	"WC_prec3"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_mr26_2070"	"WC_prec3"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_mr45_2050"	"WC_prec3"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_mr45_2070"	"WC_prec3"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_mr60_2050"	"WC_prec3"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_mr60_2070"	"WC_prec3"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec3_mr85_2050"	"WC_prec3"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec3_mr85_2070"	"WC_prec3"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec3_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_cc26_2050"	"WC_prec4"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_cc26_2070"	"WC_prec4"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_cc45_2050"	"WC_prec4"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_cc45_2070"	"WC_prec4"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_cc60_2050"	"WC_prec4"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_cc60_2070"	"WC_prec4"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_cc85_2050"	"WC_prec4"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_cc85_2070"	"WC_prec4"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_he26_2050"	"WC_prec4"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_he26_2070"	"WC_prec4"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_he45_2050"	"WC_prec4"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_he45_2070"	"WC_prec4"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_he60_2050"	"WC_prec4"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_he60_2070"	"WC_prec4"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_he85_2050"	"WC_prec4"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_he85_2070"	"WC_prec4"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_mr26_2050"	"WC_prec4"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_mr26_2070"	"WC_prec4"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_mr45_2050"	"WC_prec4"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_mr45_2070"	"WC_prec4"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_mr60_2050"	"WC_prec4"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_mr60_2070"	"WC_prec4"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec4_mr85_2050"	"WC_prec4"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec4_mr85_2070"	"WC_prec4"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec4_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_cc26_2050"	"WC_prec5"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_cc26_2070"	"WC_prec5"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_cc45_2050"	"WC_prec5"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_cc45_2070"	"WC_prec5"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_cc60_2050"	"WC_prec5"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_cc60_2070"	"WC_prec5"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_cc85_2050"	"WC_prec5"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_cc85_2070"	"WC_prec5"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_he26_2050"	"WC_prec5"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_he26_2070"	"WC_prec5"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_he45_2050"	"WC_prec5"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_he45_2070"	"WC_prec5"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_he60_2050"	"WC_prec5"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_he60_2070"	"WC_prec5"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_he85_2050"	"WC_prec5"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_he85_2070"	"WC_prec5"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_mr26_2050"	"WC_prec5"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_mr26_2070"	"WC_prec5"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_mr45_2050"	"WC_prec5"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_mr45_2070"	"WC_prec5"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_mr60_2050"	"WC_prec5"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_mr60_2070"	"WC_prec5"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec5_mr85_2050"	"WC_prec5"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec5_mr85_2070"	"WC_prec5"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec5_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_cc26_2050"	"WC_prec6"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_cc26_2070"	"WC_prec6"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_cc45_2050"	"WC_prec6"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_cc45_2070"	"WC_prec6"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_cc60_2050"	"WC_prec6"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_cc60_2070"	"WC_prec6"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_cc85_2050"	"WC_prec6"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_cc85_2070"	"WC_prec6"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_he26_2050"	"WC_prec6"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_he26_2070"	"WC_prec6"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_he45_2050"	"WC_prec6"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_he45_2070"	"WC_prec6"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_he60_2050"	"WC_prec6"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_he60_2070"	"WC_prec6"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_he85_2050"	"WC_prec6"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_he85_2070"	"WC_prec6"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_mr26_2050"	"WC_prec6"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_mr26_2070"	"WC_prec6"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_mr45_2050"	"WC_prec6"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_mr45_2070"	"WC_prec6"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_mr60_2050"	"WC_prec6"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_mr60_2070"	"WC_prec6"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec6_mr85_2050"	"WC_prec6"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec6_mr85_2070"	"WC_prec6"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec6_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_cc26_2050"	"WC_prec7"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_cc26_2070"	"WC_prec7"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_cc45_2050"	"WC_prec7"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_cc45_2070"	"WC_prec7"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_cc60_2050"	"WC_prec7"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_cc60_2070"	"WC_prec7"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_cc85_2050"	"WC_prec7"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_cc85_2070"	"WC_prec7"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_he26_2050"	"WC_prec7"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_he26_2070"	"WC_prec7"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_he45_2050"	"WC_prec7"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_he45_2070"	"WC_prec7"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_he60_2050"	"WC_prec7"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_he60_2070"	"WC_prec7"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_he85_2050"	"WC_prec7"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_he85_2070"	"WC_prec7"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_mr26_2050"	"WC_prec7"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_mr26_2070"	"WC_prec7"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_mr45_2050"	"WC_prec7"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_mr45_2070"	"WC_prec7"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_mr60_2050"	"WC_prec7"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_mr60_2070"	"WC_prec7"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec7_mr85_2050"	"WC_prec7"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec7_mr85_2070"	"WC_prec7"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec7_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_cc26_2050"	"WC_prec8"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_cc26_2070"	"WC_prec8"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_cc45_2050"	"WC_prec8"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_cc45_2070"	"WC_prec8"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_cc60_2050"	"WC_prec8"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_cc60_2070"	"WC_prec8"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_cc85_2050"	"WC_prec8"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_cc85_2070"	"WC_prec8"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_he26_2050"	"WC_prec8"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_he26_2070"	"WC_prec8"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_he45_2050"	"WC_prec8"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_he45_2070"	"WC_prec8"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_he60_2050"	"WC_prec8"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_he60_2070"	"WC_prec8"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_he85_2050"	"WC_prec8"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_he85_2070"	"WC_prec8"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_mr26_2050"	"WC_prec8"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_mr26_2070"	"WC_prec8"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_mr45_2050"	"WC_prec8"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_mr45_2070"	"WC_prec8"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_mr60_2050"	"WC_prec8"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_mr60_2070"	"WC_prec8"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec8_mr85_2050"	"WC_prec8"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec8_mr85_2070"	"WC_prec8"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec8_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_cc26_2050"	"WC_prec9"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_cc26_2070"	"WC_prec9"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_cc45_2050"	"WC_prec9"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_cc45_2070"	"WC_prec9"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_cc60_2050"	"WC_prec9"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_cc60_2070"	"WC_prec9"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_cc85_2050"	"WC_prec9"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_cc85_2070"	"WC_prec9"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_he26_2050"	"WC_prec9"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he26_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_he26_2070"	"WC_prec9"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he26_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_he45_2050"	"WC_prec9"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he45_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_he45_2070"	"WC_prec9"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he45_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_he60_2050"	"WC_prec9"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he60_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_he60_2070"	"WC_prec9"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he60_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_he85_2050"	"WC_prec9"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he85_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_he85_2070"	"WC_prec9"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_he85_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_mr26_2050"	"WC_prec9"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_mr26_2070"	"WC_prec9"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_mr45_2050"	"WC_prec9"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_mr45_2070"	"WC_prec9"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_mr60_2050"	"WC_prec9"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_mr60_2070"	"WC_prec9"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_prec9_mr85_2050"	"WC_prec9"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_prec9_mr85_2070"	"WC_prec9"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_prec9_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc26_2050"	"WC_tmax1"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc26_2070"	"WC_tmax1"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc45_2050"	"WC_tmax1"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc45_2070"	"WC_tmax1"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc60_2050"	"WC_tmax1"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc60_2070"	"WC_tmax1"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc85_2050"	"WC_tmax1"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_cc85_2070"	"WC_tmax1"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_he26_2050"	"WC_tmax1"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_he26_2070"	"WC_tmax1"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_he45_2050"	"WC_tmax1"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_he45_2070"	"WC_tmax1"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_he60_2050"	"WC_tmax1"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_he60_2070"	"WC_tmax1"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_he85_2050"	"WC_tmax1"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_he85_2070"	"WC_tmax1"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr26_2050"	"WC_tmax1"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr26_2070"	"WC_tmax1"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr45_2050"	"WC_tmax1"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr45_2070"	"WC_tmax1"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr60_2050"	"WC_tmax1"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr60_2070"	"WC_tmax1"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr85_2050"	"WC_tmax1"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax1_mr85_2070"	"WC_tmax1"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax1_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc26_2050"	"WC_tmax10"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc26_2070"	"WC_tmax10"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc45_2050"	"WC_tmax10"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc45_2070"	"WC_tmax10"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc60_2050"	"WC_tmax10"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc60_2070"	"WC_tmax10"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc85_2050"	"WC_tmax10"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_cc85_2070"	"WC_tmax10"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_he26_2050"	"WC_tmax10"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_he26_2070"	"WC_tmax10"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_he45_2050"	"WC_tmax10"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_he45_2070"	"WC_tmax10"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_he60_2050"	"WC_tmax10"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_he60_2070"	"WC_tmax10"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_he85_2050"	"WC_tmax10"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_he85_2070"	"WC_tmax10"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr26_2050"	"WC_tmax10"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr26_2070"	"WC_tmax10"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr45_2050"	"WC_tmax10"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr45_2070"	"WC_tmax10"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr60_2050"	"WC_tmax10"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr60_2070"	"WC_tmax10"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr85_2050"	"WC_tmax10"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax10_mr85_2070"	"WC_tmax10"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax10_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc26_2050"	"WC_tmax11"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc26_2070"	"WC_tmax11"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc45_2050"	"WC_tmax11"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc45_2070"	"WC_tmax11"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc60_2050"	"WC_tmax11"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc60_2070"	"WC_tmax11"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc85_2050"	"WC_tmax11"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_cc85_2070"	"WC_tmax11"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_he26_2050"	"WC_tmax11"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_he26_2070"	"WC_tmax11"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_he45_2050"	"WC_tmax11"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_he45_2070"	"WC_tmax11"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_he60_2050"	"WC_tmax11"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_he60_2070"	"WC_tmax11"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_he85_2050"	"WC_tmax11"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_he85_2070"	"WC_tmax11"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr26_2050"	"WC_tmax11"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr26_2070"	"WC_tmax11"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr45_2050"	"WC_tmax11"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr45_2070"	"WC_tmax11"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr60_2050"	"WC_tmax11"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr60_2070"	"WC_tmax11"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr85_2050"	"WC_tmax11"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax11_mr85_2070"	"WC_tmax11"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax11_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc26_2050"	"WC_tmax12"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc26_2070"	"WC_tmax12"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc45_2050"	"WC_tmax12"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc45_2070"	"WC_tmax12"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc60_2050"	"WC_tmax12"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc60_2070"	"WC_tmax12"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc85_2050"	"WC_tmax12"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_cc85_2070"	"WC_tmax12"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_he26_2050"	"WC_tmax12"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_he26_2070"	"WC_tmax12"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_he45_2050"	"WC_tmax12"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_he45_2070"	"WC_tmax12"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_he60_2050"	"WC_tmax12"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_he60_2070"	"WC_tmax12"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_he85_2050"	"WC_tmax12"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_he85_2070"	"WC_tmax12"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr26_2050"	"WC_tmax12"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr26_2070"	"WC_tmax12"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr45_2050"	"WC_tmax12"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr45_2070"	"WC_tmax12"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr60_2050"	"WC_tmax12"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr60_2070"	"WC_tmax12"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr85_2050"	"WC_tmax12"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax12_mr85_2070"	"WC_tmax12"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax12_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc26_2050"	"WC_tmax2"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc26_2070"	"WC_tmax2"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc45_2050"	"WC_tmax2"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc45_2070"	"WC_tmax2"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc60_2050"	"WC_tmax2"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc60_2070"	"WC_tmax2"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc85_2050"	"WC_tmax2"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_cc85_2070"	"WC_tmax2"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_he26_2050"	"WC_tmax2"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_he26_2070"	"WC_tmax2"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_he45_2050"	"WC_tmax2"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_he45_2070"	"WC_tmax2"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_he60_2050"	"WC_tmax2"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_he60_2070"	"WC_tmax2"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_he85_2050"	"WC_tmax2"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_he85_2070"	"WC_tmax2"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr26_2050"	"WC_tmax2"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr26_2070"	"WC_tmax2"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr45_2050"	"WC_tmax2"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr45_2070"	"WC_tmax2"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr60_2050"	"WC_tmax2"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr60_2070"	"WC_tmax2"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr85_2050"	"WC_tmax2"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax2_mr85_2070"	"WC_tmax2"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax2_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc26_2050"	"WC_tmax3"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc26_2070"	"WC_tmax3"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc45_2050"	"WC_tmax3"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc45_2070"	"WC_tmax3"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc60_2050"	"WC_tmax3"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc60_2070"	"WC_tmax3"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc85_2050"	"WC_tmax3"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_cc85_2070"	"WC_tmax3"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_he26_2050"	"WC_tmax3"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_he26_2070"	"WC_tmax3"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_he45_2050"	"WC_tmax3"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_he45_2070"	"WC_tmax3"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_he60_2050"	"WC_tmax3"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_he60_2070"	"WC_tmax3"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_he85_2050"	"WC_tmax3"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_he85_2070"	"WC_tmax3"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr26_2050"	"WC_tmax3"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr26_2070"	"WC_tmax3"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr45_2050"	"WC_tmax3"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr45_2070"	"WC_tmax3"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr60_2050"	"WC_tmax3"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr60_2070"	"WC_tmax3"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr85_2050"	"WC_tmax3"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax3_mr85_2070"	"WC_tmax3"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax3_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc26_2050"	"WC_tmax4"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc26_2070"	"WC_tmax4"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc45_2050"	"WC_tmax4"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc45_2070"	"WC_tmax4"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc60_2050"	"WC_tmax4"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc60_2070"	"WC_tmax4"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc85_2050"	"WC_tmax4"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_cc85_2070"	"WC_tmax4"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_he26_2050"	"WC_tmax4"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_he26_2070"	"WC_tmax4"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_he45_2050"	"WC_tmax4"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_he45_2070"	"WC_tmax4"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_he60_2050"	"WC_tmax4"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_he60_2070"	"WC_tmax4"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_he85_2050"	"WC_tmax4"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_he85_2070"	"WC_tmax4"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr26_2050"	"WC_tmax4"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr26_2070"	"WC_tmax4"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr45_2050"	"WC_tmax4"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr45_2070"	"WC_tmax4"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr60_2050"	"WC_tmax4"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr60_2070"	"WC_tmax4"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr85_2050"	"WC_tmax4"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax4_mr85_2070"	"WC_tmax4"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax4_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc26_2050"	"WC_tmax5"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc26_2070"	"WC_tmax5"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc45_2050"	"WC_tmax5"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc45_2070"	"WC_tmax5"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc60_2050"	"WC_tmax5"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc60_2070"	"WC_tmax5"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc85_2050"	"WC_tmax5"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_cc85_2070"	"WC_tmax5"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_he26_2050"	"WC_tmax5"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_he26_2070"	"WC_tmax5"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_he45_2050"	"WC_tmax5"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_he45_2070"	"WC_tmax5"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_he60_2050"	"WC_tmax5"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_he60_2070"	"WC_tmax5"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_he85_2050"	"WC_tmax5"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_he85_2070"	"WC_tmax5"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr26_2050"	"WC_tmax5"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr26_2070"	"WC_tmax5"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr45_2050"	"WC_tmax5"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr45_2070"	"WC_tmax5"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr60_2050"	"WC_tmax5"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr60_2070"	"WC_tmax5"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr85_2050"	"WC_tmax5"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax5_mr85_2070"	"WC_tmax5"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax5_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc26_2050"	"WC_tmax6"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc26_2070"	"WC_tmax6"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc45_2050"	"WC_tmax6"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc45_2070"	"WC_tmax6"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc60_2050"	"WC_tmax6"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc60_2070"	"WC_tmax6"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc85_2050"	"WC_tmax6"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_cc85_2070"	"WC_tmax6"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_he26_2050"	"WC_tmax6"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_he26_2070"	"WC_tmax6"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_he45_2050"	"WC_tmax6"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_he45_2070"	"WC_tmax6"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_he60_2050"	"WC_tmax6"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_he60_2070"	"WC_tmax6"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_he85_2050"	"WC_tmax6"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_he85_2070"	"WC_tmax6"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr26_2050"	"WC_tmax6"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr26_2070"	"WC_tmax6"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr45_2050"	"WC_tmax6"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr45_2070"	"WC_tmax6"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr60_2050"	"WC_tmax6"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr60_2070"	"WC_tmax6"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr85_2050"	"WC_tmax6"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax6_mr85_2070"	"WC_tmax6"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax6_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc26_2050"	"WC_tmax7"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc26_2070"	"WC_tmax7"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc45_2050"	"WC_tmax7"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc45_2070"	"WC_tmax7"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc60_2050"	"WC_tmax7"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc60_2070"	"WC_tmax7"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc85_2050"	"WC_tmax7"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_cc85_2070"	"WC_tmax7"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_he26_2050"	"WC_tmax7"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_he26_2070"	"WC_tmax7"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_he45_2050"	"WC_tmax7"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_he45_2070"	"WC_tmax7"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_he60_2050"	"WC_tmax7"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_he60_2070"	"WC_tmax7"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_he85_2050"	"WC_tmax7"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_he85_2070"	"WC_tmax7"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr26_2050"	"WC_tmax7"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr26_2070"	"WC_tmax7"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr45_2050"	"WC_tmax7"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr45_2070"	"WC_tmax7"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr60_2050"	"WC_tmax7"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr60_2070"	"WC_tmax7"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr85_2050"	"WC_tmax7"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax7_mr85_2070"	"WC_tmax7"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax7_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc26_2050"	"WC_tmax8"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc26_2070"	"WC_tmax8"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc45_2050"	"WC_tmax8"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc45_2070"	"WC_tmax8"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc60_2050"	"WC_tmax8"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc60_2070"	"WC_tmax8"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc85_2050"	"WC_tmax8"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_cc85_2070"	"WC_tmax8"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_he26_2050"	"WC_tmax8"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_he26_2070"	"WC_tmax8"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_he45_2050"	"WC_tmax8"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_he45_2070"	"WC_tmax8"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_he60_2050"	"WC_tmax8"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_he60_2070"	"WC_tmax8"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_he85_2050"	"WC_tmax8"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_he85_2070"	"WC_tmax8"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr26_2050"	"WC_tmax8"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr26_2070"	"WC_tmax8"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr45_2050"	"WC_tmax8"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr45_2070"	"WC_tmax8"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr60_2050"	"WC_tmax8"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr60_2070"	"WC_tmax8"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr85_2050"	"WC_tmax8"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax8_mr85_2070"	"WC_tmax8"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax8_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc26_2050"	"WC_tmax9"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc26_2070"	"WC_tmax9"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc45_2050"	"WC_tmax9"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc45_2070"	"WC_tmax9"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc60_2050"	"WC_tmax9"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc60_2070"	"WC_tmax9"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc85_2050"	"WC_tmax9"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_cc85_2070"	"WC_tmax9"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_he26_2050"	"WC_tmax9"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_he26_2070"	"WC_tmax9"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_he45_2050"	"WC_tmax9"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_he45_2070"	"WC_tmax9"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_he60_2050"	"WC_tmax9"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_he60_2070"	"WC_tmax9"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_he85_2050"	"WC_tmax9"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_he85_2070"	"WC_tmax9"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr26_2050"	"WC_tmax9"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr26_2070"	"WC_tmax9"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr45_2050"	"WC_tmax9"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr45_2070"	"WC_tmax9"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr60_2050"	"WC_tmax9"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr60_2070"	"WC_tmax9"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr85_2050"	"WC_tmax9"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmax9_mr85_2070"	"WC_tmax9"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmax9_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc26_2050"	"WC_tmin1"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc26_2070"	"WC_tmin1"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc45_2050"	"WC_tmin1"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc45_2070"	"WC_tmin1"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc60_2050"	"WC_tmin1"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc60_2070"	"WC_tmin1"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc85_2050"	"WC_tmin1"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_cc85_2070"	"WC_tmin1"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_he26_2050"	"WC_tmin1"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_he26_2070"	"WC_tmin1"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_he45_2050"	"WC_tmin1"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_he45_2070"	"WC_tmin1"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_he60_2050"	"WC_tmin1"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_he60_2070"	"WC_tmin1"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_he85_2050"	"WC_tmin1"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_he85_2070"	"WC_tmin1"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr26_2050"	"WC_tmin1"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr26_2070"	"WC_tmin1"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr45_2050"	"WC_tmin1"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr45_2070"	"WC_tmin1"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr60_2050"	"WC_tmin1"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr60_2070"	"WC_tmin1"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr85_2050"	"WC_tmin1"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin1_mr85_2070"	"WC_tmin1"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin1_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc26_2050"	"WC_tmin10"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc26_2070"	"WC_tmin10"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc45_2050"	"WC_tmin10"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc45_2070"	"WC_tmin10"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc60_2050"	"WC_tmin10"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc60_2070"	"WC_tmin10"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc85_2050"	"WC_tmin10"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_cc85_2070"	"WC_tmin10"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_he26_2050"	"WC_tmin10"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_he26_2070"	"WC_tmin10"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_he45_2050"	"WC_tmin10"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_he45_2070"	"WC_tmin10"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_he60_2050"	"WC_tmin10"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_he60_2070"	"WC_tmin10"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_he85_2050"	"WC_tmin10"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_he85_2070"	"WC_tmin10"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr26_2050"	"WC_tmin10"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr26_2070"	"WC_tmin10"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr45_2050"	"WC_tmin10"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr45_2070"	"WC_tmin10"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr60_2050"	"WC_tmin10"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr60_2070"	"WC_tmin10"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr85_2050"	"WC_tmin10"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin10_mr85_2070"	"WC_tmin10"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin10_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc26_2050"	"WC_tmin11"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc26_2070"	"WC_tmin11"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc45_2050"	"WC_tmin11"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc45_2070"	"WC_tmin11"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc60_2050"	"WC_tmin11"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc60_2070"	"WC_tmin11"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc85_2050"	"WC_tmin11"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_cc85_2070"	"WC_tmin11"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_he26_2050"	"WC_tmin11"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_he26_2070"	"WC_tmin11"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_he45_2050"	"WC_tmin11"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_he45_2070"	"WC_tmin11"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_he60_2050"	"WC_tmin11"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_he60_2070"	"WC_tmin11"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_he85_2050"	"WC_tmin11"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_he85_2070"	"WC_tmin11"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr26_2050"	"WC_tmin11"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr26_2070"	"WC_tmin11"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr45_2050"	"WC_tmin11"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr45_2070"	"WC_tmin11"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr60_2050"	"WC_tmin11"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr60_2070"	"WC_tmin11"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr85_2050"	"WC_tmin11"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin11_mr85_2070"	"WC_tmin11"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin11_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc26_2050"	"WC_tmin12"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc26_2070"	"WC_tmin12"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc45_2050"	"WC_tmin12"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc45_2070"	"WC_tmin12"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc60_2050"	"WC_tmin12"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc60_2070"	"WC_tmin12"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc85_2050"	"WC_tmin12"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_cc85_2070"	"WC_tmin12"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_he26_2050"	"WC_tmin12"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_he26_2070"	"WC_tmin12"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_he45_2050"	"WC_tmin12"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_he45_2070"	"WC_tmin12"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_he60_2050"	"WC_tmin12"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_he60_2070"	"WC_tmin12"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_he85_2050"	"WC_tmin12"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_he85_2070"	"WC_tmin12"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr26_2050"	"WC_tmin12"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr26_2070"	"WC_tmin12"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr45_2050"	"WC_tmin12"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr45_2070"	"WC_tmin12"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr60_2050"	"WC_tmin12"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr60_2070"	"WC_tmin12"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr85_2050"	"WC_tmin12"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin12_mr85_2070"	"WC_tmin12"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin12_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc26_2050"	"WC_tmin2"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc26_2070"	"WC_tmin2"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc45_2050"	"WC_tmin2"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc45_2070"	"WC_tmin2"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc60_2050"	"WC_tmin2"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc60_2070"	"WC_tmin2"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc85_2050"	"WC_tmin2"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_cc85_2070"	"WC_tmin2"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_he26_2050"	"WC_tmin2"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_he26_2070"	"WC_tmin2"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_he45_2050"	"WC_tmin2"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_he45_2070"	"WC_tmin2"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_he60_2050"	"WC_tmin2"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_he60_2070"	"WC_tmin2"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_he85_2050"	"WC_tmin2"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_he85_2070"	"WC_tmin2"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr26_2050"	"WC_tmin2"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr26_2070"	"WC_tmin2"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr45_2050"	"WC_tmin2"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr45_2070"	"WC_tmin2"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr60_2050"	"WC_tmin2"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr60_2070"	"WC_tmin2"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr85_2050"	"WC_tmin2"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin2_mr85_2070"	"WC_tmin2"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin2_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc26_2050"	"WC_tmin3"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc26_2070"	"WC_tmin3"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc45_2050"	"WC_tmin3"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc45_2070"	"WC_tmin3"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc60_2050"	"WC_tmin3"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc60_2070"	"WC_tmin3"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc85_2050"	"WC_tmin3"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_cc85_2070"	"WC_tmin3"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_he26_2050"	"WC_tmin3"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_he26_2070"	"WC_tmin3"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_he45_2050"	"WC_tmin3"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_he45_2070"	"WC_tmin3"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_he60_2050"	"WC_tmin3"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_he60_2070"	"WC_tmin3"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_he85_2050"	"WC_tmin3"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_he85_2070"	"WC_tmin3"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr26_2050"	"WC_tmin3"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr26_2070"	"WC_tmin3"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr45_2050"	"WC_tmin3"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr45_2070"	"WC_tmin3"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr60_2050"	"WC_tmin3"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr60_2070"	"WC_tmin3"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr85_2050"	"WC_tmin3"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin3_mr85_2070"	"WC_tmin3"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin3_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc26_2050"	"WC_tmin4"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc26_2070"	"WC_tmin4"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc45_2050"	"WC_tmin4"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc45_2070"	"WC_tmin4"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc60_2050"	"WC_tmin4"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc60_2070"	"WC_tmin4"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc85_2050"	"WC_tmin4"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_cc85_2070"	"WC_tmin4"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_he26_2050"	"WC_tmin4"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_he26_2070"	"WC_tmin4"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_he45_2050"	"WC_tmin4"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_he45_2070"	"WC_tmin4"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_he60_2050"	"WC_tmin4"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_he60_2070"	"WC_tmin4"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_he85_2050"	"WC_tmin4"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_he85_2070"	"WC_tmin4"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr26_2050"	"WC_tmin4"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr26_2070"	"WC_tmin4"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr45_2050"	"WC_tmin4"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr45_2070"	"WC_tmin4"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr60_2050"	"WC_tmin4"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr60_2070"	"WC_tmin4"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr85_2050"	"WC_tmin4"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin4_mr85_2070"	"WC_tmin4"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin4_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc26_2050"	"WC_tmin5"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc26_2070"	"WC_tmin5"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc45_2050"	"WC_tmin5"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc45_2070"	"WC_tmin5"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc60_2050"	"WC_tmin5"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc60_2070"	"WC_tmin5"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc85_2050"	"WC_tmin5"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_cc85_2070"	"WC_tmin5"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_he26_2050"	"WC_tmin5"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_he26_2070"	"WC_tmin5"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_he45_2050"	"WC_tmin5"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_he45_2070"	"WC_tmin5"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_he60_2050"	"WC_tmin5"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_he60_2070"	"WC_tmin5"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_he85_2050"	"WC_tmin5"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_he85_2070"	"WC_tmin5"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr26_2050"	"WC_tmin5"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr26_2070"	"WC_tmin5"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr45_2050"	"WC_tmin5"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr45_2070"	"WC_tmin5"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr60_2050"	"WC_tmin5"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr60_2070"	"WC_tmin5"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr85_2050"	"WC_tmin5"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin5_mr85_2070"	"WC_tmin5"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin5_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc26_2050"	"WC_tmin6"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc26_2070"	"WC_tmin6"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc45_2050"	"WC_tmin6"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc45_2070"	"WC_tmin6"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc60_2050"	"WC_tmin6"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc60_2070"	"WC_tmin6"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc85_2050"	"WC_tmin6"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_cc85_2070"	"WC_tmin6"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_he26_2050"	"WC_tmin6"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_he26_2070"	"WC_tmin6"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_he45_2050"	"WC_tmin6"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_he45_2070"	"WC_tmin6"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_he60_2050"	"WC_tmin6"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_he60_2070"	"WC_tmin6"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_he85_2050"	"WC_tmin6"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_he85_2070"	"WC_tmin6"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr26_2050"	"WC_tmin6"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr26_2070"	"WC_tmin6"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr45_2050"	"WC_tmin6"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr45_2070"	"WC_tmin6"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr60_2050"	"WC_tmin6"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr60_2070"	"WC_tmin6"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr85_2050"	"WC_tmin6"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin6_mr85_2070"	"WC_tmin6"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin6_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc26_2050"	"WC_tmin7"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc26_2070"	"WC_tmin7"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc45_2050"	"WC_tmin7"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc45_2070"	"WC_tmin7"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc60_2050"	"WC_tmin7"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc60_2070"	"WC_tmin7"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc85_2050"	"WC_tmin7"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_cc85_2070"	"WC_tmin7"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_he26_2050"	"WC_tmin7"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_he26_2070"	"WC_tmin7"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_he45_2050"	"WC_tmin7"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_he45_2070"	"WC_tmin7"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_he60_2050"	"WC_tmin7"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_he60_2070"	"WC_tmin7"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_he85_2050"	"WC_tmin7"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_he85_2070"	"WC_tmin7"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr26_2050"	"WC_tmin7"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr26_2070"	"WC_tmin7"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr45_2050"	"WC_tmin7"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr45_2070"	"WC_tmin7"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr60_2050"	"WC_tmin7"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr60_2070"	"WC_tmin7"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr85_2050"	"WC_tmin7"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin7_mr85_2070"	"WC_tmin7"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin7_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc26_2050"	"WC_tmin8"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc26_2070"	"WC_tmin8"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc45_2050"	"WC_tmin8"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc45_2070"	"WC_tmin8"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc60_2050"	"WC_tmin8"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc60_2070"	"WC_tmin8"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc85_2050"	"WC_tmin8"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_cc85_2070"	"WC_tmin8"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_he26_2050"	"WC_tmin8"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_he26_2070"	"WC_tmin8"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_he45_2050"	"WC_tmin8"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_he45_2070"	"WC_tmin8"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_he60_2050"	"WC_tmin8"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_he60_2070"	"WC_tmin8"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_he85_2050"	"WC_tmin8"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_he85_2070"	"WC_tmin8"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr26_2050"	"WC_tmin8"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr26_2070"	"WC_tmin8"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr45_2050"	"WC_tmin8"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr45_2070"	"WC_tmin8"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr60_2050"	"WC_tmin8"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr60_2070"	"WC_tmin8"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr85_2050"	"WC_tmin8"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin8_mr85_2070"	"WC_tmin8"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin8_mr85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc26_2050"	"WC_tmin9"	"CCSM4"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc26_2070"	"WC_tmin9"	"CCSM4"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc45_2050"	"WC_tmin9"	"CCSM4"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc45_2070"	"WC_tmin9"	"CCSM4"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc60_2050"	"WC_tmin9"	"CCSM4"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc60_2070"	"WC_tmin9"	"CCSM4"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc85_2050"	"WC_tmin9"	"CCSM4"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_cc85_2070"	"WC_tmin9"	"CCSM4"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_cc85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_he26_2050"	"WC_tmin9"	"HadGEM2-ES"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_he26_2070"	"WC_tmin9"	"HadGEM2-ES"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_he45_2050"	"WC_tmin9"	"HadGEM2-ES"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_he45_2070"	"WC_tmin9"	"HadGEM2-ES"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_he60_2050"	"WC_tmin9"	"HadGEM2-ES"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_he60_2070"	"WC_tmin9"	"HadGEM2-ES"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_he85_2050"	"WC_tmin9"	"HadGEM2-ES"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_he85_2070"	"WC_tmin9"	"HadGEM2-ES"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_he85_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr26_2050"	"WC_tmin9"	"MIROC-ESM"	"rcp26"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr26_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr26_2070"	"WC_tmin9"	"MIROC-ESM"	"rcp26"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr26_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr45_2050"	"WC_tmin9"	"MIROC-ESM"	"rcp45"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr45_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr45_2070"	"WC_tmin9"	"MIROC-ESM"	"rcp45"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr45_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr60_2050"	"WC_tmin9"	"MIROC-ESM"	"rcp60"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr60_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr60_2070"	"WC_tmin9"	"MIROC-ESM"	"rcp60"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr60_2070_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr85_2050"	"WC_tmin9"	"MIROC-ESM"	"rcp85"	2050	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr85_2050_lonlat.tif"
+"WorldClim"	"WC_tmin9_mr85_2070"	"WC_tmin9"	"MIROC-ESM"	"rcp85"	2070	1	"https://www.lifewatch.be/sdmpredictors/WC_tmin9_mr85_2070_lonlat.tif"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/3_data_curren.tsv	Mon Apr 08 16:33:11 2024 +0000
@@ -0,0 +1,323 @@
+"dataset_code"	"layer_code"	"name"	"description"	"terrestrial"	"marine"	"freshwater"	"cellsize_equalarea"	"cellsize_lonlat"	"units"	"primary_type"	"primary_spatial_resolution"	"primary_source"	"start_year"	"start_month"	"start_day"	"end_year"	"end_month"	"end_day"	"derivation"	"month"	"is_surface"	"version"	"layer_url"
+"Freshwater"	"FW_dem_min"	"Minimum elevation"	"Minimum elevation"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_min_lonlat.tif"
+"Freshwater"	"FW_dem_max"	"Maximum elevation"	"Maximum elevation"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_max_lonlat.tif"
+"Freshwater"	"FW_dem_range"	"Elevation range"	"Elevation range"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_range_lonlat.tif"
+"Freshwater"	"FW_dem_avg"	"Average elevation"	"Average elevation"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_avg_lonlat.tif"
+"Freshwater"	"FW_slope_min"	"Minimum slope"	"Minimum slope"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_min_lonlat.tif"
+"Freshwater"	"FW_slope_max"	"Maximum slope"	"Maximum slope"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_max_lonlat.tif"
+"Freshwater"	"FW_slope_range"	"Slope range"	"Slope range"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_range_lonlat.tif"
+"Freshwater"	"FW_slope_avg"	"Average slope"	"Average slope"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_avg_lonlat.tif"
+"Freshwater"	"FW_flow_length"	"Number of upstream stream grid cells"	"Number of upstream stream grid cells"	FALSE	FALSE	TRUE	815	0.008333333	"count"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_flow_length_lonlat.tif"
+"Freshwater"	"FW_flow_acc"	"Number of upstream catchment grid cells"	"Number of upstream catchment grid cells"	FALSE	FALSE	TRUE	815	0.008333333	"count"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_flow_acc_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_01"	"Min. monthly air temperature for January"	"Min. monthly air temperature for January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_01_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_02"	"Min. monthly air temperature for February"	"Min. monthly air temperature for February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_02_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_03"	"Min. monthly air temperature for March"	"Min. monthly air temperature for March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_03_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_04"	"Min. monthly air temperature for April"	"Min. monthly air temperature for April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_04_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_05"	"Min. monthly air temperature for May"	"Min. monthly air temperature for May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_05_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_06"	"Min. monthly air temperature for June"	"Min. monthly air temperature for June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_06_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_07"	"Min. monthly air temperature for July"	"Min. monthly air temperature for July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_07_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_08"	"Min. monthly air temperature for August"	"Min. monthly air temperature for August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_08_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_09"	"Min. monthly air temperature for September"	"Min. monthly air temperature for September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_09_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_10"	"Min. monthly air temperature for October"	"Min. monthly air temperature for October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_10_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_11"	"Min. monthly air temperature for November"	"Min. monthly air temperature for November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_11_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_12"	"Min. monthly air temperature for December"	"Min. monthly air temperature for December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_12_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_01"	"Max. monthly air temperature for January"	"Max. monthly air temperature for January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_01_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_02"	"Max. monthly air temperature for February"	"Max. monthly air temperature for February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_02_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_03"	"Max. monthly air temperature for March"	"Max. monthly air temperature for March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_03_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_04"	"Max. monthly air temperature for April"	"Max. monthly air temperature for April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_04_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_05"	"Max. monthly air temperature for May"	"Max. monthly air temperature for May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_05_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_06"	"Max. monthly air temperature for June"	"Max. monthly air temperature for June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_06_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_07"	"Max. monthly air temperature for July"	"Max. monthly air temperature for July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_07_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_08"	"Max. monthly air temperature for August"	"Max. monthly air temperature for August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_08_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_09"	"Max. monthly air temperature for September"	"Max. monthly air temperature for September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_09_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_10"	"Max. monthly air temperature for October"	"Max. monthly air temperature for October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_10_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_11"	"Max. monthly air temperature for November"	"Max. monthly air temperature for November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_11_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_12"	"Max. monthly air temperature for December"	"Max. monthly air temperature for December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_12_lonlat.tif"
+"Freshwater"	"FW_prec_sum_01"	"Sum of monthly precipitation for January"	"Sum of monthly precipitation for January"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_01_lonlat.tif"
+"Freshwater"	"FW_prec_sum_02"	"Sum of monthly precipitation for February"	"Sum of monthly precipitation for February"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_02_lonlat.tif"
+"Freshwater"	"FW_prec_sum_03"	"Sum of monthly precipitation for March"	"Sum of monthly precipitation for March"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_03_lonlat.tif"
+"Freshwater"	"FW_prec_sum_04"	"Sum of monthly precipitation for April"	"Sum of monthly precipitation for April"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_04_lonlat.tif"
+"Freshwater"	"FW_prec_sum_05"	"Sum of monthly precipitation for May"	"Sum of monthly precipitation for May"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_05_lonlat.tif"
+"Freshwater"	"FW_prec_sum_06"	"Sum of monthly precipitation for June"	"Sum of monthly precipitation for June"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_06_lonlat.tif"
+"Freshwater"	"FW_prec_sum_07"	"Sum of monthly precipitation for July"	"Sum of monthly precipitation for July"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_07_lonlat.tif"
+"Freshwater"	"FW_prec_sum_08"	"Sum of monthly precipitation for August"	"Sum of monthly precipitation for August"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_08_lonlat.tif"
+"Freshwater"	"FW_prec_sum_09"	"Sum of monthly precipitation for September"	"Sum of monthly precipitation for September"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_09_lonlat.tif"
+"Freshwater"	"FW_prec_sum_10"	"Sum of monthly precipitation for October"	"Sum of monthly precipitation for October"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_10_lonlat.tif"
+"Freshwater"	"FW_prec_sum_11"	"Sum of monthly precipitation for November"	"Sum of monthly precipitation for November"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_11_lonlat.tif"
+"Freshwater"	"FW_prec_sum_12"	"Sum of monthly precipitation for December"	"Sum of monthly precipitation for December"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_12_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_01"	"Min. monthly air temperature January"	"Min. monthly air temperature January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_01_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_02"	"Min. monthly air temperature February"	"Min. monthly air temperature February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_02_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_03"	"Min. monthly air temperature March"	"Min. monthly air temperature March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_03_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_04"	"Min. monthly air temperature April"	"Min. monthly air temperature April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_04_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_05"	"Min. monthly air temperature May"	"Min. monthly air temperature May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_05_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_06"	"Min. monthly air temperature June"	"Min. monthly air temperature June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_06_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_07"	"Min. monthly air temperature July"	"Min. monthly air temperature July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_07_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_08"	"Min. monthly air temperature August"	"Min. monthly air temperature August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_08_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_09"	"Min. monthly air temperature September"	"Min. monthly air temperature September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_09_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_10"	"Min. monthly air temperature October"	"Min. monthly air temperature October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_10_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_11"	"Min. monthly air temperature November"	"Min. monthly air temperature November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_11_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_12"	"Min. monthly air temperature December"	"Min. monthly air temperature December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_12_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_01"	"Max. monthly air temperature January"	"Max. monthly air temperature January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_01_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_02"	"Max. monthly air temperature February"	"Max. monthly air temperature February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_02_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_03"	"Max. monthly air temperature March"	"Max. monthly air temperature March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_03_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_04"	"Max. monthly air temperature April"	"Max. monthly air temperature April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_04_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_05"	"Max. monthly air temperature May"	"Max. monthly air temperature May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_05_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_06"	"Max. monthly air temperature June"	"Max. monthly air temperature June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_06_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_07"	"Max. monthly air temperature July"	"Max. monthly air temperature July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_07_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_08"	"Max. monthly air temperature August"	"Max. monthly air temperature August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_08_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_09"	"Max. monthly air temperature September"	"Max. monthly air temperature September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_09_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_10"	"Max. monthly air temperature October"	"Max. monthly air temperature October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_10_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_11"	"Max. monthly air temperature November"	"Max. monthly air temperature November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_11_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_12"	"Max. monthly air temperature December"	"Max. monthly air temperature December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_12_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_01"	"Sum of monthly precipitation January"	"Sum of monthly precipitation January"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_01_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_02"	"Sum of monthly precipitation February"	"Sum of monthly precipitation February"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_02_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_03"	"Sum of monthly precipitation March"	"Sum of monthly precipitation March"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_03_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_04"	"Sum of monthly precipitation April"	"Sum of monthly precipitation April"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_04_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_05"	"Sum of monthly precipitation May"	"Sum of monthly precipitation May"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_05_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_06"	"Sum of monthly precipitation June"	"Sum of monthly precipitation June"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_06_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_07"	"Sum of monthly precipitation July"	"Sum of monthly precipitation July"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_07_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_08"	"Sum of monthly precipitation August"	"Sum of monthly precipitation August"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_08_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_09"	"Sum of monthly precipitation September"	"Sum of monthly precipitation September"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_09_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_10"	"Sum of monthly precipitation October"	"Sum of monthly precipitation October"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_10_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_11"	"Sum of monthly precipitation November"	"Sum of monthly precipitation November"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_11_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_12"	"Sum of monthly precipitation December"	"Sum of monthly precipitation December"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_12_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_01"	"Bioclim 1"	"Bioclim 1"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_01_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_02"	"Bioclim 2"	"Bioclim 2"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_02_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_03"	"Bioclim 3"	"Bioclim 3"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_03_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_04"	"Bioclim 4"	"Bioclim 4"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_04_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_05"	"Bioclim 5"	"Bioclim 5"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_05_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_06"	"Bioclim 6"	"Bioclim 6"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_06_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_07"	"Bioclim 7"	"Bioclim 7"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_07_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_08"	"Bioclim 8"	"Bioclim 8"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_08_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_09"	"Bioclim 9"	"Bioclim 9"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_09_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_10"	"Bioclim 10"	"Bioclim 10"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_10_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_11"	"Bioclim 11"	"Bioclim 11"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_11_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_12"	"Bioclim 12"	"Bioclim 12"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_12_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_13"	"Bioclim 13"	"Bioclim 13"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_13_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_14"	"Bioclim 14"	"Bioclim 14"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_14_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_15"	"Bioclim 15"	"Bioclim 15"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_15_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_16"	"Bioclim 16"	"Bioclim 16"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_16_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_17"	"Bioclim 17"	"Bioclim 17"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_17_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_18"	"Bioclim 18"	"Bioclim 18"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_18_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_19"	"Bioclim 19"	"Bioclim 19"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_19_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_01"	"Bioclim 1"	"Bioclim 1"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_01_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_02"	"Bioclim 2"	"Bioclim 2"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_02_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_03"	"Bioclim 3"	"Bioclim 3"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_03_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_04"	"Bioclim 4"	"Bioclim 4"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_04_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_05"	"Bioclim 5"	"Bioclim 5"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_05_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_06"	"Bioclim 6"	"Bioclim 6"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_06_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_07"	"Bioclim 7"	"Bioclim 7"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_07_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_08"	"Bioclim 8"	"Bioclim 8"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_08_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_09"	"Bioclim 9"	"Bioclim 9"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_09_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_10"	"Bioclim 10"	"Bioclim 10"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_10_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_11"	"Bioclim 11"	"Bioclim 11"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_11_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_12"	"Bioclim 12"	"Bioclim 12"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_12_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_13"	"Bioclim 13"	"Bioclim 13"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_13_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_14"	"Bioclim 14"	"Bioclim 14"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_14_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_15"	"Bioclim 15"	"Bioclim 15"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_15_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_16"	"Bioclim 16"	"Bioclim 16"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_16_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_17"	"Bioclim 17"	"Bioclim 17"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_17_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_18"	"Bioclim 18"	"Bioclim 18"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_18_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_19"	"Bioclim 19"	"Bioclim 19"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_19_lonlat.tif"
+"Freshwater"	"FW_lc_min_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_01_lonlat.tif"
+"Freshwater"	"FW_lc_min_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_02_lonlat.tif"
+"Freshwater"	"FW_lc_min_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_03_lonlat.tif"
+"Freshwater"	"FW_lc_min_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_04_lonlat.tif"
+"Freshwater"	"FW_lc_min_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_05_lonlat.tif"
+"Freshwater"	"FW_lc_min_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_06_lonlat.tif"
+"Freshwater"	"FW_lc_min_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_07_lonlat.tif"
+"Freshwater"	"FW_lc_min_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_08_lonlat.tif"
+"Freshwater"	"FW_lc_min_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_09_lonlat.tif"
+"Freshwater"	"FW_lc_min_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_10_lonlat.tif"
+"Freshwater"	"FW_lc_min_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_11_lonlat.tif"
+"Freshwater"	"FW_lc_min_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_12_lonlat.tif"
+"Freshwater"	"FW_lc_max_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_01_lonlat.tif"
+"Freshwater"	"FW_lc_max_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_02_lonlat.tif"
+"Freshwater"	"FW_lc_max_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_03_lonlat.tif"
+"Freshwater"	"FW_lc_max_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_04_lonlat.tif"
+"Freshwater"	"FW_lc_max_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_05_lonlat.tif"
+"Freshwater"	"FW_lc_max_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_06_lonlat.tif"
+"Freshwater"	"FW_lc_max_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_07_lonlat.tif"
+"Freshwater"	"FW_lc_max_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_08_lonlat.tif"
+"Freshwater"	"FW_lc_max_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_09_lonlat.tif"
+"Freshwater"	"FW_lc_max_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_10_lonlat.tif"
+"Freshwater"	"FW_lc_max_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_11_lonlat.tif"
+"Freshwater"	"FW_lc_max_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_12_lonlat.tif"
+"Freshwater"	"FW_lc_range_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_01_lonlat.tif"
+"Freshwater"	"FW_lc_range_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_02_lonlat.tif"
+"Freshwater"	"FW_lc_range_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_03_lonlat.tif"
+"Freshwater"	"FW_lc_range_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_04_lonlat.tif"
+"Freshwater"	"FW_lc_range_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_05_lonlat.tif"
+"Freshwater"	"FW_lc_range_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_06_lonlat.tif"
+"Freshwater"	"FW_lc_range_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_07_lonlat.tif"
+"Freshwater"	"FW_lc_range_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_08_lonlat.tif"
+"Freshwater"	"FW_lc_range_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_09_lonlat.tif"
+"Freshwater"	"FW_lc_range_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_10_lonlat.tif"
+"Freshwater"	"FW_lc_range_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_11_lonlat.tif"
+"Freshwater"	"FW_lc_range_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_12_lonlat.tif"
+"Freshwater"	"FW_lc_avg_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_01_lonlat.tif"
+"Freshwater"	"FW_lc_avg_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_02_lonlat.tif"
+"Freshwater"	"FW_lc_avg_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_03_lonlat.tif"
+"Freshwater"	"FW_lc_avg_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_04_lonlat.tif"
+"Freshwater"	"FW_lc_avg_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_05_lonlat.tif"
+"Freshwater"	"FW_lc_avg_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_06_lonlat.tif"
+"Freshwater"	"FW_lc_avg_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_07_lonlat.tif"
+"Freshwater"	"FW_lc_avg_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_08_lonlat.tif"
+"Freshwater"	"FW_lc_avg_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_09_lonlat.tif"
+"Freshwater"	"FW_lc_avg_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_10_lonlat.tif"
+"Freshwater"	"FW_lc_avg_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_11_lonlat.tif"
+"Freshwater"	"FW_lc_avg_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_12_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_01_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_02_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_03_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_04_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_05_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_06_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_07_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_08_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_09_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_10_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_11_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_12_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_01"	"Archean"	"Archean"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_01_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_02"	"Archean, Permian"	"Archean, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_02_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_03"	"Cambrian"	"Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_03_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_04"	"Cambrian, Precambrian"	"Cambrian, Precambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_04_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_05"	"Cambrian, Proterozoic"	"Cambrian, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_05_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_06"	"Carboniferous"	"Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_06_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_07"	"Carboniferous, Devonian"	"Carboniferous, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_07_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_08"	"Carboniferous, Miocene"	"Carboniferous, Miocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_08_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_09"	"Cenozoic"	"Cenozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_09_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_10"	"Cenozoic, Mesozoic"	"Cenozoic, Mesozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_10_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_11"	"Cretaceous"	"Cretaceous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_11_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_12"	"Cretaceous, Carboniferous"	"Cretaceous, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_12_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_13"	"Cretaceous, Devonian"	"Cretaceous, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_13_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_14"	"Cretaceous, Jurassic"	"Cretaceous, Jurassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_14_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_15"	"Cretaceous, Mississippian"	"Cretaceous, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_15_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_16"	"Cretaceous, Paleogene, Neogene"	"Cretaceous, Paleogene, Neogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_16_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_17"	"Cretaceous, Permian"	"Cretaceous, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_17_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_18"	"Cretaceous, Tertiary"	"Cretaceous, Tertiary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_18_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_19"	"Cretaceous, Triassic"	"Cretaceous, Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_19_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_20"	"Devonian"	"Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_20_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_21"	"Devonian, Cambrian"	"Devonian, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_21_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_22"	"Devonian, Ordovician"	"Devonian, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_22_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_23"	"Devonian, Proterozoic"	"Devonian, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_23_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_24"	"Devonian, Silurian"	"Devonian, Silurian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_24_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_25"	"Devonian, Silurian, Ordovician"	"Devonian, Silurian, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_25_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_26"	"Holocene"	"Holocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_26_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_27"	"Ice"	"Ice"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_27_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_28"	"Jurassic"	"Jurassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_28_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_29"	"Jurassic, Cambrian"	"Jurassic, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_29_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_30"	"Jurassic, Carboniferous"	"Jurassic, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_30_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_31"	"Jurassic, Devonian"	"Jurassic, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_31_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_32"	"Jurassic, Mississippian"	"Jurassic, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_32_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_33"	"Jurassic, Ordovician"	"Jurassic, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_33_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_34"	"Jurassic, Permian"	"Jurassic, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_34_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_35"	"Jurassic, Triassic"	"Jurassic, Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_35_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_36"	"Kimberlite"	"Kimberlite"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_36_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_37"	"Mesozoic"	"Mesozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_37_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_38"	"Mesozoic, Cenozoic"	"Mesozoic, Cenozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_38_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_39"	"Mesozoic, Paleozoic"	"Mesozoic, Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_39_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_40"	"Mesozoic, Palezoic"	"Mesozoic, Palezoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_40_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_41"	"Miocene"	"Miocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_41_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_42"	"Mississippian"	"Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_42_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_43"	"Mississippian, Cambrian"	"Mississippian, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_43_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_44"	"Mississippian, Devonian"	"Mississippian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_44_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_45"	"Neogene"	"Neogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_45_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_46"	"Neogene, Paleogene"	"Neogene, Paleogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_46_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_47"	"Ordovician"	"Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_47_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_48"	"Ordovician, Cambrian"	"Ordovician, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_48_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_49"	"Ordovician, Proterozoic"	"Ordovician, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_49_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_50"	"Paleogene"	"Paleogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_50_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_51"	"Paleogene, Cretaceous"	"Paleogene, Cretaceous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_51_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_52"	"Paleozoic"	"Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_52_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_53"	"Paleozoic, Mesozoic"	"Paleozoic, Mesozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_53_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_54"	"Paleozoic, Precambrian"	"Paleozoic, Precambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_54_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_55"	"Paleozoic, Proterozoic"	"Paleozoic, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_55_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_56"	"Pennsylvanian"	"Pennsylvanian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_56_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_57"	"Pennsylvanian, Devonian"	"Pennsylvanian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_57_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_58"	"Pennsylvanian, Mississippian"	"Pennsylvanian, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_58_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_59"	"Permian"	"Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_59_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_60"	"Permian, Carboniferous"	"Permian, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_60_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_61"	"Permian, Devonian"	"Permian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_61_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_62"	"Permian, Mississippian"	"Permian, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_62_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_63"	"Permian, Pennsylvanian"	"Permian, Pennsylvanian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_63_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_64"	"Permian, Triassic"	"Permian, Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_64_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_65"	"Pleistocene"	"Pleistocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_65_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_66"	"Pliocene, Quaternary"	"Pliocene, Quaternary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_66_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_67"	"Precambrian"	"Precambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_67_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_68"	"Precambrian, Devonian"	"Precambrian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_68_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_69"	"Precambrian, Paleozoic"	"Precambrian, Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_69_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_70"	"Proterozoic"	"Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_70_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_71"	"Proterozoic, Archean"	"Proterozoic, Archean"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_71_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_72"	"Quaternary"	"Quaternary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_72_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_73"	"Quaternary, Neogne"	"Quaternary, Neogne"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_73_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_74"	"Quaternary, Tertiary"	"Quaternary, Tertiary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_74_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_75"	"Salt"	"Salt"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_75_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_76"	"Silurian"	"Silurian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_76_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_77"	"Silurian, Cambrian"	"Silurian, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_77_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_78"	"Silurian, Ordovician"	"Silurian, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_78_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_79"	"Silurian, Proterozoic"	"Silurian, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_79_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_80"	"Tertiary"	"Tertiary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_80_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_81"	"Tertiary, Cretaceous"	"Tertiary, Cretaceous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_81_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_82"	"Triassic"	"Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_82_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_83"	"Triassic, Carboniferous"	"Triassic, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_83_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_84"	"Triassic, Devonian"	"Triassic, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_84_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_85"	"Triassic, Mississippian"	"Triassic, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_85_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_86"	"Triassic, Ordovician"	"Triassic, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_86_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_87"	"Triassic, Paleozoic"	"Triassic, Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_87_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_88"	"Triassic, Pennsylvanian"	"Triassic, Pennsylvanian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_88_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_89"	"Triassic, Permian"	"Triassic, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_89_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_90"	"Triassic, Proterozoic"	"Triassic, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_90_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_91"	"Unknown"	"Unknown"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_91_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_92"	"Water"	"Water"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_92_lonlat.tif"
+"Freshwater"	"FW_soil_min_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_01_lonlat.tif"
+"Freshwater"	"FW_soil_min_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_02_lonlat.tif"
+"Freshwater"	"FW_soil_min_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_03_lonlat.tif"
+"Freshwater"	"FW_soil_min_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_04_lonlat.tif"
+"Freshwater"	"FW_soil_min_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_05_lonlat.tif"
+"Freshwater"	"FW_soil_min_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_06_lonlat.tif"
+"Freshwater"	"FW_soil_min_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_07_lonlat.tif"
+"Freshwater"	"FW_soil_min_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_08_lonlat.tif"
+"Freshwater"	"FW_soil_min_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_09_lonlat.tif"
+"Freshwater"	"FW_soil_min_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_10_lonlat.tif"
+"Freshwater"	"FW_soil_max_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_01_lonlat.tif"
+"Freshwater"	"FW_soil_max_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_02_lonlat.tif"
+"Freshwater"	"FW_soil_max_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_03_lonlat.tif"
+"Freshwater"	"FW_soil_max_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_04_lonlat.tif"
+"Freshwater"	"FW_soil_max_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_05_lonlat.tif"
+"Freshwater"	"FW_soil_max_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_06_lonlat.tif"
+"Freshwater"	"FW_soil_max_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_07_lonlat.tif"
+"Freshwater"	"FW_soil_max_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_08_lonlat.tif"
+"Freshwater"	"FW_soil_max_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_09_lonlat.tif"
+"Freshwater"	"FW_soil_max_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_10_lonlat.tif"
+"Freshwater"	"FW_soil_range_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_01_lonlat.tif"
+"Freshwater"	"FW_soil_range_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_02_lonlat.tif"
+"Freshwater"	"FW_soil_range_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_03_lonlat.tif"
+"Freshwater"	"FW_soil_range_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_04_lonlat.tif"
+"Freshwater"	"FW_soil_range_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_05_lonlat.tif"
+"Freshwater"	"FW_soil_range_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_06_lonlat.tif"
+"Freshwater"	"FW_soil_range_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_07_lonlat.tif"
+"Freshwater"	"FW_soil_range_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_08_lonlat.tif"
+"Freshwater"	"FW_soil_range_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_09_lonlat.tif"
+"Freshwater"	"FW_soil_range_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_10_lonlat.tif"
+"Freshwater"	"FW_soil_avg_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_01_lonlat.tif"
+"Freshwater"	"FW_soil_avg_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_02_lonlat.tif"
+"Freshwater"	"FW_soil_avg_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_03_lonlat.tif"
+"Freshwater"	"FW_soil_avg_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_04_lonlat.tif"
+"Freshwater"	"FW_soil_avg_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_05_lonlat.tif"
+"Freshwater"	"FW_soil_avg_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_06_lonlat.tif"
+"Freshwater"	"FW_soil_avg_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_07_lonlat.tif"
+"Freshwater"	"FW_soil_avg_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_08_lonlat.tif"
+"Freshwater"	"FW_soil_avg_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_09_lonlat.tif"
+"Freshwater"	"FW_soil_avg_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_10_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_01_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_02_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_03_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_04_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_05_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_06_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_07_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_08_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_09_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_10_lonlat.tif"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/3_data_current.tabular	Mon Apr 08 16:33:11 2024 +0000
@@ -0,0 +1,323 @@
+"dataset_code"	"layer_code"	"name"	"description"	"terrestrial"	"marine"	"freshwater"	"cellsize_equalarea"	"cellsize_lonlat"	"units"	"primary_type"	"primary_spatial_resolution"	"primary_source"	"start_year"	"start_month"	"start_day"	"end_year"	"end_month"	"end_day"	"derivation"	"month"	"is_surface"	"version"	"layer_url"
+"Freshwater"	"FW_dem_min"	"Minimum elevation"	"Minimum elevation"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_min_lonlat.tif"
+"Freshwater"	"FW_dem_max"	"Maximum elevation"	"Maximum elevation"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_max_lonlat.tif"
+"Freshwater"	"FW_dem_range"	"Elevation range"	"Elevation range"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_range_lonlat.tif"
+"Freshwater"	"FW_dem_avg"	"Average elevation"	"Average elevation"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_avg_lonlat.tif"
+"Freshwater"	"FW_slope_min"	"Minimum slope"	"Minimum slope"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_min_lonlat.tif"
+"Freshwater"	"FW_slope_max"	"Maximum slope"	"Maximum slope"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_max_lonlat.tif"
+"Freshwater"	"FW_slope_range"	"Slope range"	"Slope range"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_range_lonlat.tif"
+"Freshwater"	"FW_slope_avg"	"Average slope"	"Average slope"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_avg_lonlat.tif"
+"Freshwater"	"FW_flow_length"	"Number of upstream stream grid cells"	"Number of upstream stream grid cells"	FALSE	FALSE	TRUE	815	0.008333333	"count"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_flow_length_lonlat.tif"
+"Freshwater"	"FW_flow_acc"	"Number of upstream catchment grid cells"	"Number of upstream catchment grid cells"	FALSE	FALSE	TRUE	815	0.008333333	"count"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_flow_acc_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_01"	"Min. monthly air temperature for January"	"Min. monthly air temperature for January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_01_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_02"	"Min. monthly air temperature for February"	"Min. monthly air temperature for February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_02_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_03"	"Min. monthly air temperature for March"	"Min. monthly air temperature for March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_03_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_04"	"Min. monthly air temperature for April"	"Min. monthly air temperature for April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_04_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_05"	"Min. monthly air temperature for May"	"Min. monthly air temperature for May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_05_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_06"	"Min. monthly air temperature for June"	"Min. monthly air temperature for June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_06_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_07"	"Min. monthly air temperature for July"	"Min. monthly air temperature for July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_07_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_08"	"Min. monthly air temperature for August"	"Min. monthly air temperature for August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_08_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_09"	"Min. monthly air temperature for September"	"Min. monthly air temperature for September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_09_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_10"	"Min. monthly air temperature for October"	"Min. monthly air temperature for October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_10_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_11"	"Min. monthly air temperature for November"	"Min. monthly air temperature for November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_11_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_12"	"Min. monthly air temperature for December"	"Min. monthly air temperature for December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_12_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_01"	"Max. monthly air temperature for January"	"Max. monthly air temperature for January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_01_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_02"	"Max. monthly air temperature for February"	"Max. monthly air temperature for February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_02_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_03"	"Max. monthly air temperature for March"	"Max. monthly air temperature for March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_03_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_04"	"Max. monthly air temperature for April"	"Max. monthly air temperature for April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_04_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_05"	"Max. monthly air temperature for May"	"Max. monthly air temperature for May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_05_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_06"	"Max. monthly air temperature for June"	"Max. monthly air temperature for June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_06_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_07"	"Max. monthly air temperature for July"	"Max. monthly air temperature for July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_07_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_08"	"Max. monthly air temperature for August"	"Max. monthly air temperature for August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_08_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_09"	"Max. monthly air temperature for September"	"Max. monthly air temperature for September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_09_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_10"	"Max. monthly air temperature for October"	"Max. monthly air temperature for October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_10_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_11"	"Max. monthly air temperature for November"	"Max. monthly air temperature for November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_11_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_12"	"Max. monthly air temperature for December"	"Max. monthly air temperature for December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_12_lonlat.tif"
+"Freshwater"	"FW_prec_sum_01"	"Sum of monthly precipitation for January"	"Sum of monthly precipitation for January"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_01_lonlat.tif"
+"Freshwater"	"FW_prec_sum_02"	"Sum of monthly precipitation for February"	"Sum of monthly precipitation for February"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_02_lonlat.tif"
+"Freshwater"	"FW_prec_sum_03"	"Sum of monthly precipitation for March"	"Sum of monthly precipitation for March"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_03_lonlat.tif"
+"Freshwater"	"FW_prec_sum_04"	"Sum of monthly precipitation for April"	"Sum of monthly precipitation for April"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_04_lonlat.tif"
+"Freshwater"	"FW_prec_sum_05"	"Sum of monthly precipitation for May"	"Sum of monthly precipitation for May"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_05_lonlat.tif"
+"Freshwater"	"FW_prec_sum_06"	"Sum of monthly precipitation for June"	"Sum of monthly precipitation for June"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_06_lonlat.tif"
+"Freshwater"	"FW_prec_sum_07"	"Sum of monthly precipitation for July"	"Sum of monthly precipitation for July"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_07_lonlat.tif"
+"Freshwater"	"FW_prec_sum_08"	"Sum of monthly precipitation for August"	"Sum of monthly precipitation for August"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_08_lonlat.tif"
+"Freshwater"	"FW_prec_sum_09"	"Sum of monthly precipitation for September"	"Sum of monthly precipitation for September"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_09_lonlat.tif"
+"Freshwater"	"FW_prec_sum_10"	"Sum of monthly precipitation for October"	"Sum of monthly precipitation for October"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_10_lonlat.tif"
+"Freshwater"	"FW_prec_sum_11"	"Sum of monthly precipitation for November"	"Sum of monthly precipitation for November"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_11_lonlat.tif"
+"Freshwater"	"FW_prec_sum_12"	"Sum of monthly precipitation for December"	"Sum of monthly precipitation for December"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_12_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_01"	"Min. monthly air temperature January"	"Min. monthly air temperature January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_01_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_02"	"Min. monthly air temperature February"	"Min. monthly air temperature February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_02_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_03"	"Min. monthly air temperature March"	"Min. monthly air temperature March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_03_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_04"	"Min. monthly air temperature April"	"Min. monthly air temperature April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_04_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_05"	"Min. monthly air temperature May"	"Min. monthly air temperature May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_05_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_06"	"Min. monthly air temperature June"	"Min. monthly air temperature June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_06_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_07"	"Min. monthly air temperature July"	"Min. monthly air temperature July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_07_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_08"	"Min. monthly air temperature August"	"Min. monthly air temperature August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_08_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_09"	"Min. monthly air temperature September"	"Min. monthly air temperature September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_09_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_10"	"Min. monthly air temperature October"	"Min. monthly air temperature October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_10_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_11"	"Min. monthly air temperature November"	"Min. monthly air temperature November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_11_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_12"	"Min. monthly air temperature December"	"Min. monthly air temperature December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_12_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_01"	"Max. monthly air temperature January"	"Max. monthly air temperature January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_01_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_02"	"Max. monthly air temperature February"	"Max. monthly air temperature February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_02_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_03"	"Max. monthly air temperature March"	"Max. monthly air temperature March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_03_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_04"	"Max. monthly air temperature April"	"Max. monthly air temperature April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_04_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_05"	"Max. monthly air temperature May"	"Max. monthly air temperature May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_05_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_06"	"Max. monthly air temperature June"	"Max. monthly air temperature June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_06_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_07"	"Max. monthly air temperature July"	"Max. monthly air temperature July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_07_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_08"	"Max. monthly air temperature August"	"Max. monthly air temperature August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_08_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_09"	"Max. monthly air temperature September"	"Max. monthly air temperature September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_09_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_10"	"Max. monthly air temperature October"	"Max. monthly air temperature October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_10_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_11"	"Max. monthly air temperature November"	"Max. monthly air temperature November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_11_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_12"	"Max. monthly air temperature December"	"Max. monthly air temperature December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_12_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_01"	"Sum of monthly precipitation January"	"Sum of monthly precipitation January"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_01_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_02"	"Sum of monthly precipitation February"	"Sum of monthly precipitation February"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_02_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_03"	"Sum of monthly precipitation March"	"Sum of monthly precipitation March"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_03_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_04"	"Sum of monthly precipitation April"	"Sum of monthly precipitation April"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_04_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_05"	"Sum of monthly precipitation May"	"Sum of monthly precipitation May"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_05_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_06"	"Sum of monthly precipitation June"	"Sum of monthly precipitation June"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_06_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_07"	"Sum of monthly precipitation July"	"Sum of monthly precipitation July"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_07_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_08"	"Sum of monthly precipitation August"	"Sum of monthly precipitation August"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_08_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_09"	"Sum of monthly precipitation September"	"Sum of monthly precipitation September"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_09_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_10"	"Sum of monthly precipitation October"	"Sum of monthly precipitation October"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_10_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_11"	"Sum of monthly precipitation November"	"Sum of monthly precipitation November"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_11_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_12"	"Sum of monthly precipitation December"	"Sum of monthly precipitation December"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_12_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_01"	"Bioclim 1"	"Bioclim 1"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_01_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_02"	"Bioclim 2"	"Bioclim 2"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_02_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_03"	"Bioclim 3"	"Bioclim 3"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_03_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_04"	"Bioclim 4"	"Bioclim 4"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_04_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_05"	"Bioclim 5"	"Bioclim 5"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_05_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_06"	"Bioclim 6"	"Bioclim 6"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_06_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_07"	"Bioclim 7"	"Bioclim 7"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_07_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_08"	"Bioclim 8"	"Bioclim 8"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_08_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_09"	"Bioclim 9"	"Bioclim 9"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_09_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_10"	"Bioclim 10"	"Bioclim 10"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_10_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_11"	"Bioclim 11"	"Bioclim 11"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_11_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_12"	"Bioclim 12"	"Bioclim 12"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_12_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_13"	"Bioclim 13"	"Bioclim 13"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_13_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_14"	"Bioclim 14"	"Bioclim 14"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_14_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_15"	"Bioclim 15"	"Bioclim 15"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_15_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_16"	"Bioclim 16"	"Bioclim 16"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_16_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_17"	"Bioclim 17"	"Bioclim 17"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_17_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_18"	"Bioclim 18"	"Bioclim 18"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_18_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_19"	"Bioclim 19"	"Bioclim 19"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_19_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_01"	"Bioclim 1"	"Bioclim 1"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_01_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_02"	"Bioclim 2"	"Bioclim 2"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_02_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_03"	"Bioclim 3"	"Bioclim 3"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_03_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_04"	"Bioclim 4"	"Bioclim 4"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_04_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_05"	"Bioclim 5"	"Bioclim 5"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_05_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_06"	"Bioclim 6"	"Bioclim 6"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_06_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_07"	"Bioclim 7"	"Bioclim 7"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_07_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_08"	"Bioclim 8"	"Bioclim 8"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_08_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_09"	"Bioclim 9"	"Bioclim 9"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_09_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_10"	"Bioclim 10"	"Bioclim 10"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_10_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_11"	"Bioclim 11"	"Bioclim 11"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_11_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_12"	"Bioclim 12"	"Bioclim 12"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_12_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_13"	"Bioclim 13"	"Bioclim 13"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_13_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_14"	"Bioclim 14"	"Bioclim 14"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_14_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_15"	"Bioclim 15"	"Bioclim 15"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_15_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_16"	"Bioclim 16"	"Bioclim 16"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_16_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_17"	"Bioclim 17"	"Bioclim 17"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_17_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_18"	"Bioclim 18"	"Bioclim 18"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_18_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_19"	"Bioclim 19"	"Bioclim 19"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_19_lonlat.tif"
+"Freshwater"	"FW_lc_min_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_01_lonlat.tif"
+"Freshwater"	"FW_lc_min_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_02_lonlat.tif"
+"Freshwater"	"FW_lc_min_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_03_lonlat.tif"
+"Freshwater"	"FW_lc_min_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_04_lonlat.tif"
+"Freshwater"	"FW_lc_min_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_05_lonlat.tif"
+"Freshwater"	"FW_lc_min_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_06_lonlat.tif"
+"Freshwater"	"FW_lc_min_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_07_lonlat.tif"
+"Freshwater"	"FW_lc_min_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_08_lonlat.tif"
+"Freshwater"	"FW_lc_min_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_09_lonlat.tif"
+"Freshwater"	"FW_lc_min_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_10_lonlat.tif"
+"Freshwater"	"FW_lc_min_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_11_lonlat.tif"
+"Freshwater"	"FW_lc_min_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_12_lonlat.tif"
+"Freshwater"	"FW_lc_max_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_01_lonlat.tif"
+"Freshwater"	"FW_lc_max_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_02_lonlat.tif"
+"Freshwater"	"FW_lc_max_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_03_lonlat.tif"
+"Freshwater"	"FW_lc_max_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_04_lonlat.tif"
+"Freshwater"	"FW_lc_max_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_05_lonlat.tif"
+"Freshwater"	"FW_lc_max_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_06_lonlat.tif"
+"Freshwater"	"FW_lc_max_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_07_lonlat.tif"
+"Freshwater"	"FW_lc_max_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_08_lonlat.tif"
+"Freshwater"	"FW_lc_max_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_09_lonlat.tif"
+"Freshwater"	"FW_lc_max_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_10_lonlat.tif"
+"Freshwater"	"FW_lc_max_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_11_lonlat.tif"
+"Freshwater"	"FW_lc_max_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_12_lonlat.tif"
+"Freshwater"	"FW_lc_range_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_01_lonlat.tif"
+"Freshwater"	"FW_lc_range_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_02_lonlat.tif"
+"Freshwater"	"FW_lc_range_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_03_lonlat.tif"
+"Freshwater"	"FW_lc_range_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_04_lonlat.tif"
+"Freshwater"	"FW_lc_range_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_05_lonlat.tif"
+"Freshwater"	"FW_lc_range_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_06_lonlat.tif"
+"Freshwater"	"FW_lc_range_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_07_lonlat.tif"
+"Freshwater"	"FW_lc_range_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_08_lonlat.tif"
+"Freshwater"	"FW_lc_range_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_09_lonlat.tif"
+"Freshwater"	"FW_lc_range_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_10_lonlat.tif"
+"Freshwater"	"FW_lc_range_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_11_lonlat.tif"
+"Freshwater"	"FW_lc_range_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_12_lonlat.tif"
+"Freshwater"	"FW_lc_avg_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_01_lonlat.tif"
+"Freshwater"	"FW_lc_avg_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_02_lonlat.tif"
+"Freshwater"	"FW_lc_avg_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_03_lonlat.tif"
+"Freshwater"	"FW_lc_avg_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_04_lonlat.tif"
+"Freshwater"	"FW_lc_avg_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_05_lonlat.tif"
+"Freshwater"	"FW_lc_avg_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_06_lonlat.tif"
+"Freshwater"	"FW_lc_avg_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_07_lonlat.tif"
+"Freshwater"	"FW_lc_avg_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_08_lonlat.tif"
+"Freshwater"	"FW_lc_avg_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_09_lonlat.tif"
+"Freshwater"	"FW_lc_avg_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_10_lonlat.tif"
+"Freshwater"	"FW_lc_avg_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_11_lonlat.tif"
+"Freshwater"	"FW_lc_avg_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_12_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_01_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_02_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_03_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_04_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_05_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_06_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_07_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_08_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_09_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_10_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_11_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_12_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_01"	"Archean"	"Archean"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_01_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_02"	"Archean, Permian"	"Archean, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_02_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_03"	"Cambrian"	"Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_03_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_04"	"Cambrian, Precambrian"	"Cambrian, Precambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_04_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_05"	"Cambrian, Proterozoic"	"Cambrian, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_05_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_06"	"Carboniferous"	"Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_06_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_07"	"Carboniferous, Devonian"	"Carboniferous, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_07_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_08"	"Carboniferous, Miocene"	"Carboniferous, Miocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_08_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_09"	"Cenozoic"	"Cenozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_09_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_10"	"Cenozoic, Mesozoic"	"Cenozoic, Mesozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_10_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_11"	"Cretaceous"	"Cretaceous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_11_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_12"	"Cretaceous, Carboniferous"	"Cretaceous, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_12_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_13"	"Cretaceous, Devonian"	"Cretaceous, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_13_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_14"	"Cretaceous, Jurassic"	"Cretaceous, Jurassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_14_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_15"	"Cretaceous, Mississippian"	"Cretaceous, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_15_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_16"	"Cretaceous, Paleogene, Neogene"	"Cretaceous, Paleogene, Neogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_16_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_17"	"Cretaceous, Permian"	"Cretaceous, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_17_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_18"	"Cretaceous, Tertiary"	"Cretaceous, Tertiary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_18_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_19"	"Cretaceous, Triassic"	"Cretaceous, Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_19_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_20"	"Devonian"	"Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_20_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_21"	"Devonian, Cambrian"	"Devonian, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_21_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_22"	"Devonian, Ordovician"	"Devonian, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_22_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_23"	"Devonian, Proterozoic"	"Devonian, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_23_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_24"	"Devonian, Silurian"	"Devonian, Silurian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_24_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_25"	"Devonian, Silurian, Ordovician"	"Devonian, Silurian, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_25_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_26"	"Holocene"	"Holocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_26_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_27"	"Ice"	"Ice"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_27_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_28"	"Jurassic"	"Jurassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_28_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_29"	"Jurassic, Cambrian"	"Jurassic, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_29_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_30"	"Jurassic, Carboniferous"	"Jurassic, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_30_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_31"	"Jurassic, Devonian"	"Jurassic, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_31_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_32"	"Jurassic, Mississippian"	"Jurassic, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_32_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_33"	"Jurassic, Ordovician"	"Jurassic, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_33_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_34"	"Jurassic, Permian"	"Jurassic, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_34_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_35"	"Jurassic, Triassic"	"Jurassic, Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_35_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_36"	"Kimberlite"	"Kimberlite"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_36_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_37"	"Mesozoic"	"Mesozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_37_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_38"	"Mesozoic, Cenozoic"	"Mesozoic, Cenozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_38_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_39"	"Mesozoic, Paleozoic"	"Mesozoic, Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_39_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_40"	"Mesozoic, Palezoic"	"Mesozoic, Palezoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_40_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_41"	"Miocene"	"Miocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_41_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_42"	"Mississippian"	"Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_42_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_43"	"Mississippian, Cambrian"	"Mississippian, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_43_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_44"	"Mississippian, Devonian"	"Mississippian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_44_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_45"	"Neogene"	"Neogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_45_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_46"	"Neogene, Paleogene"	"Neogene, Paleogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_46_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_47"	"Ordovician"	"Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_47_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_48"	"Ordovician, Cambrian"	"Ordovician, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_48_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_49"	"Ordovician, Proterozoic"	"Ordovician, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_49_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_50"	"Paleogene"	"Paleogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_50_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_51"	"Paleogene, Cretaceous"	"Paleogene, Cretaceous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_51_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_52"	"Paleozoic"	"Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_52_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_53"	"Paleozoic, Mesozoic"	"Paleozoic, Mesozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_53_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_54"	"Paleozoic, Precambrian"	"Paleozoic, Precambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_54_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_55"	"Paleozoic, Proterozoic"	"Paleozoic, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_55_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_56"	"Pennsylvanian"	"Pennsylvanian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_56_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_57"	"Pennsylvanian, Devonian"	"Pennsylvanian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_57_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_58"	"Pennsylvanian, Mississippian"	"Pennsylvanian, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_58_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_59"	"Permian"	"Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_59_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_60"	"Permian, Carboniferous"	"Permian, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_60_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_61"	"Permian, Devonian"	"Permian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_61_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_62"	"Permian, Mississippian"	"Permian, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_62_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_63"	"Permian, Pennsylvanian"	"Permian, Pennsylvanian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_63_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_64"	"Permian, Triassic"	"Permian, Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_64_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_65"	"Pleistocene"	"Pleistocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_65_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_66"	"Pliocene, Quaternary"	"Pliocene, Quaternary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_66_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_67"	"Precambrian"	"Precambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_67_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_68"	"Precambrian, Devonian"	"Precambrian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_68_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_69"	"Precambrian, Paleozoic"	"Precambrian, Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_69_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_70"	"Proterozoic"	"Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_70_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_71"	"Proterozoic, Archean"	"Proterozoic, Archean"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_71_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_72"	"Quaternary"	"Quaternary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_72_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_73"	"Quaternary, Neogne"	"Quaternary, Neogne"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_73_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_74"	"Quaternary, Tertiary"	"Quaternary, Tertiary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_74_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_75"	"Salt"	"Salt"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_75_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_76"	"Silurian"	"Silurian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_76_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_77"	"Silurian, Cambrian"	"Silurian, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_77_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_78"	"Silurian, Ordovician"	"Silurian, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_78_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_79"	"Silurian, Proterozoic"	"Silurian, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_79_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_80"	"Tertiary"	"Tertiary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_80_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_81"	"Tertiary, Cretaceous"	"Tertiary, Cretaceous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_81_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_82"	"Triassic"	"Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_82_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_83"	"Triassic, Carboniferous"	"Triassic, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_83_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_84"	"Triassic, Devonian"	"Triassic, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_84_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_85"	"Triassic, Mississippian"	"Triassic, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_85_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_86"	"Triassic, Ordovician"	"Triassic, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_86_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_87"	"Triassic, Paleozoic"	"Triassic, Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_87_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_88"	"Triassic, Pennsylvanian"	"Triassic, Pennsylvanian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_88_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_89"	"Triassic, Permian"	"Triassic, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_89_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_90"	"Triassic, Proterozoic"	"Triassic, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_90_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_91"	"Unknown"	"Unknown"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_91_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_92"	"Water"	"Water"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_92_lonlat.tif"
+"Freshwater"	"FW_soil_min_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_01_lonlat.tif"
+"Freshwater"	"FW_soil_min_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_02_lonlat.tif"
+"Freshwater"	"FW_soil_min_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_03_lonlat.tif"
+"Freshwater"	"FW_soil_min_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_04_lonlat.tif"
+"Freshwater"	"FW_soil_min_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_05_lonlat.tif"
+"Freshwater"	"FW_soil_min_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_06_lonlat.tif"
+"Freshwater"	"FW_soil_min_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_07_lonlat.tif"
+"Freshwater"	"FW_soil_min_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_08_lonlat.tif"
+"Freshwater"	"FW_soil_min_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_09_lonlat.tif"
+"Freshwater"	"FW_soil_min_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_10_lonlat.tif"
+"Freshwater"	"FW_soil_max_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_01_lonlat.tif"
+"Freshwater"	"FW_soil_max_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_02_lonlat.tif"
+"Freshwater"	"FW_soil_max_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_03_lonlat.tif"
+"Freshwater"	"FW_soil_max_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_04_lonlat.tif"
+"Freshwater"	"FW_soil_max_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_05_lonlat.tif"
+"Freshwater"	"FW_soil_max_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_06_lonlat.tif"
+"Freshwater"	"FW_soil_max_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_07_lonlat.tif"
+"Freshwater"	"FW_soil_max_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_08_lonlat.tif"
+"Freshwater"	"FW_soil_max_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_09_lonlat.tif"
+"Freshwater"	"FW_soil_max_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_10_lonlat.tif"
+"Freshwater"	"FW_soil_range_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_01_lonlat.tif"
+"Freshwater"	"FW_soil_range_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_02_lonlat.tif"
+"Freshwater"	"FW_soil_range_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_03_lonlat.tif"
+"Freshwater"	"FW_soil_range_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_04_lonlat.tif"
+"Freshwater"	"FW_soil_range_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_05_lonlat.tif"
+"Freshwater"	"FW_soil_range_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_06_lonlat.tif"
+"Freshwater"	"FW_soil_range_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_07_lonlat.tif"
+"Freshwater"	"FW_soil_range_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_08_lonlat.tif"
+"Freshwater"	"FW_soil_range_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_09_lonlat.tif"
+"Freshwater"	"FW_soil_range_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_10_lonlat.tif"
+"Freshwater"	"FW_soil_avg_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_01_lonlat.tif"
+"Freshwater"	"FW_soil_avg_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_02_lonlat.tif"
+"Freshwater"	"FW_soil_avg_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_03_lonlat.tif"
+"Freshwater"	"FW_soil_avg_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_04_lonlat.tif"
+"Freshwater"	"FW_soil_avg_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_05_lonlat.tif"
+"Freshwater"	"FW_soil_avg_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_06_lonlat.tif"
+"Freshwater"	"FW_soil_avg_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_07_lonlat.tif"
+"Freshwater"	"FW_soil_avg_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_08_lonlat.tif"
+"Freshwater"	"FW_soil_avg_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_09_lonlat.tif"
+"Freshwater"	"FW_soil_avg_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_10_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_01_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_02_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_03_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_04_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_05_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_06_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_07_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_08_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_09_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_10_lonlat.tif"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/3_data_current.tsv	Mon Apr 08 16:33:11 2024 +0000
@@ -0,0 +1,323 @@
+"dataset_code"	"layer_code"	"name"	"description"	"terrestrial"	"marine"	"freshwater"	"cellsize_equalarea"	"cellsize_lonlat"	"units"	"primary_type"	"primary_spatial_resolution"	"primary_source"	"start_year"	"start_month"	"start_day"	"end_year"	"end_month"	"end_day"	"derivation"	"month"	"is_surface"	"version"	"layer_url"
+"Freshwater"	"FW_dem_min"	"Minimum elevation"	"Minimum elevation"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_min_lonlat.tif"
+"Freshwater"	"FW_dem_max"	"Maximum elevation"	"Maximum elevation"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_max_lonlat.tif"
+"Freshwater"	"FW_dem_range"	"Elevation range"	"Elevation range"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_range_lonlat.tif"
+"Freshwater"	"FW_dem_avg"	"Average elevation"	"Average elevation"	FALSE	FALSE	TRUE	815	0.008333333	"[m]"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_dem_avg_lonlat.tif"
+"Freshwater"	"FW_slope_min"	"Minimum slope"	"Minimum slope"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_min_lonlat.tif"
+"Freshwater"	"FW_slope_max"	"Maximum slope"	"Maximum slope"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_max_lonlat.tif"
+"Freshwater"	"FW_slope_range"	"Slope range"	"Slope range"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_range_lonlat.tif"
+"Freshwater"	"FW_slope_avg"	"Average slope"	"Average slope"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees] * 100"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_slope_avg_lonlat.tif"
+"Freshwater"	"FW_flow_length"	"Number of upstream stream grid cells"	"Number of upstream stream grid cells"	FALSE	FALSE	TRUE	815	0.008333333	"count"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_flow_length_lonlat.tif"
+"Freshwater"	"FW_flow_acc"	"Number of upstream catchment grid cells"	"Number of upstream catchment grid cells"	FALSE	FALSE	TRUE	815	0.008333333	"count"	"Satellite (SRTM)"	"3 arcsecond, 30 arsecond, SRTM / HydroSHEDS"	"Lehner, B., Verdin, K., & Jarvis, A. (2008). New global hydrography derived from spaceborne elevation data. EOS, Transactions American Geophysical Union, 89(10), 93-94 & Lehner, B., & D??ll, P. (2004). Development and validation of a global database of lakes, reservoirs and wetlands. Journal of Hydrology, 296(1), 1-22."	2000	NA	NA	2000	NA	NA	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_flow_acc_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_01"	"Min. monthly air temperature for January"	"Min. monthly air temperature for January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_01_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_02"	"Min. monthly air temperature for February"	"Min. monthly air temperature for February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_02_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_03"	"Min. monthly air temperature for March"	"Min. monthly air temperature for March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_03_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_04"	"Min. monthly air temperature for April"	"Min. monthly air temperature for April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_04_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_05"	"Min. monthly air temperature for May"	"Min. monthly air temperature for May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_05_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_06"	"Min. monthly air temperature for June"	"Min. monthly air temperature for June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_06_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_07"	"Min. monthly air temperature for July"	"Min. monthly air temperature for July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_07_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_08"	"Min. monthly air temperature for August"	"Min. monthly air temperature for August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_08_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_09"	"Min. monthly air temperature for September"	"Min. monthly air temperature for September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_09_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_10"	"Min. monthly air temperature for October"	"Min. monthly air temperature for October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_10_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_11"	"Min. monthly air temperature for November"	"Min. monthly air temperature for November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_11_lonlat.tif"
+"Freshwater"	"FW_tmin_avg_12"	"Min. monthly air temperature for December"	"Min. monthly air temperature for December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_avg_12_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_01"	"Max. monthly air temperature for January"	"Max. monthly air temperature for January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_01_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_02"	"Max. monthly air temperature for February"	"Max. monthly air temperature for February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_02_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_03"	"Max. monthly air temperature for March"	"Max. monthly air temperature for March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_03_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_04"	"Max. monthly air temperature for April"	"Max. monthly air temperature for April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_04_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_05"	"Max. monthly air temperature for May"	"Max. monthly air temperature for May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_05_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_06"	"Max. monthly air temperature for June"	"Max. monthly air temperature for June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_06_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_07"	"Max. monthly air temperature for July"	"Max. monthly air temperature for July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_07_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_08"	"Max. monthly air temperature for August"	"Max. monthly air temperature for August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_08_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_09"	"Max. monthly air temperature for September"	"Max. monthly air temperature for September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_09_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_10"	"Max. monthly air temperature for October"	"Max. monthly air temperature for October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_10_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_11"	"Max. monthly air temperature for November"	"Max. monthly air temperature for November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_11_lonlat.tif"
+"Freshwater"	"FW_tmax_avg_12"	"Max. monthly air temperature for December"	"Max. monthly air temperature for December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_avg_12_lonlat.tif"
+"Freshwater"	"FW_prec_sum_01"	"Sum of monthly precipitation for January"	"Sum of monthly precipitation for January"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_01_lonlat.tif"
+"Freshwater"	"FW_prec_sum_02"	"Sum of monthly precipitation for February"	"Sum of monthly precipitation for February"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_02_lonlat.tif"
+"Freshwater"	"FW_prec_sum_03"	"Sum of monthly precipitation for March"	"Sum of monthly precipitation for March"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_03_lonlat.tif"
+"Freshwater"	"FW_prec_sum_04"	"Sum of monthly precipitation for April"	"Sum of monthly precipitation for April"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_04_lonlat.tif"
+"Freshwater"	"FW_prec_sum_05"	"Sum of monthly precipitation for May"	"Sum of monthly precipitation for May"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_05_lonlat.tif"
+"Freshwater"	"FW_prec_sum_06"	"Sum of monthly precipitation for June"	"Sum of monthly precipitation for June"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_06_lonlat.tif"
+"Freshwater"	"FW_prec_sum_07"	"Sum of monthly precipitation for July"	"Sum of monthly precipitation for July"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_07_lonlat.tif"
+"Freshwater"	"FW_prec_sum_08"	"Sum of monthly precipitation for August"	"Sum of monthly precipitation for August"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_08_lonlat.tif"
+"Freshwater"	"FW_prec_sum_09"	"Sum of monthly precipitation for September"	"Sum of monthly precipitation for September"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_09_lonlat.tif"
+"Freshwater"	"FW_prec_sum_10"	"Sum of monthly precipitation for October"	"Sum of monthly precipitation for October"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_10_lonlat.tif"
+"Freshwater"	"FW_prec_sum_11"	"Sum of monthly precipitation for November"	"Sum of monthly precipitation for November"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_11_lonlat.tif"
+"Freshwater"	"FW_prec_sum_12"	"Sum of monthly precipitation for December"	"Sum of monthly precipitation for December"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_sum_12_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_01"	"Min. monthly air temperature January"	"Min. monthly air temperature January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_01_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_02"	"Min. monthly air temperature February"	"Min. monthly air temperature February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_02_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_03"	"Min. monthly air temperature March"	"Min. monthly air temperature March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_03_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_04"	"Min. monthly air temperature April"	"Min. monthly air temperature April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_04_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_05"	"Min. monthly air temperature May"	"Min. monthly air temperature May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_05_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_06"	"Min. monthly air temperature June"	"Min. monthly air temperature June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_06_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_07"	"Min. monthly air temperature July"	"Min. monthly air temperature July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_07_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_08"	"Min. monthly air temperature August"	"Min. monthly air temperature August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_08_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_09"	"Min. monthly air temperature September"	"Min. monthly air temperature September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_09_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_10"	"Min. monthly air temperature October"	"Min. monthly air temperature October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_10_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_11"	"Min. monthly air temperature November"	"Min. monthly air temperature November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_11_lonlat.tif"
+"Freshwater"	"FW_tmin_wavg_12"	"Min. monthly air temperature December"	"Min. monthly air temperature December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmin_wavg_12_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_01"	"Max. monthly air temperature January"	"Max. monthly air temperature January"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_01_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_02"	"Max. monthly air temperature February"	"Max. monthly air temperature February"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_02_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_03"	"Max. monthly air temperature March"	"Max. monthly air temperature March"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_03_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_04"	"Max. monthly air temperature April"	"Max. monthly air temperature April"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_04_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_05"	"Max. monthly air temperature May"	"Max. monthly air temperature May"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_05_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_06"	"Max. monthly air temperature June"	"Max. monthly air temperature June"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_06_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_07"	"Max. monthly air temperature July"	"Max. monthly air temperature July"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_07_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_08"	"Max. monthly air temperature August"	"Max. monthly air temperature August"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_08_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_09"	"Max. monthly air temperature September"	"Max. monthly air temperature September"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_09_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_10"	"Max. monthly air temperature October"	"Max. monthly air temperature October"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_10_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_11"	"Max. monthly air temperature November"	"Max. monthly air temperature November"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_11_lonlat.tif"
+"Freshwater"	"FW_tmax_wavg_12"	"Max. monthly air temperature December"	"Max. monthly air temperature December"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_tmax_wavg_12_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_01"	"Sum of monthly precipitation January"	"Sum of monthly precipitation January"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	1	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_01_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_02"	"Sum of monthly precipitation February"	"Sum of monthly precipitation February"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	2	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_02_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_03"	"Sum of monthly precipitation March"	"Sum of monthly precipitation March"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	3	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_03_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_04"	"Sum of monthly precipitation April"	"Sum of monthly precipitation April"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	4	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_04_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_05"	"Sum of monthly precipitation May"	"Sum of monthly precipitation May"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	5	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_05_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_06"	"Sum of monthly precipitation June"	"Sum of monthly precipitation June"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	6	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_06_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_07"	"Sum of monthly precipitation July"	"Sum of monthly precipitation July"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	7	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_07_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_08"	"Sum of monthly precipitation August"	"Sum of monthly precipitation August"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	8	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_08_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_09"	"Sum of monthly precipitation September"	"Sum of monthly precipitation September"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	9	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_09_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_10"	"Sum of monthly precipitation October"	"Sum of monthly precipitation October"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	10	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_10_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_11"	"Sum of monthly precipitation November"	"Sum of monthly precipitation November"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	11	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_11_lonlat.tif"
+"Freshwater"	"FW_prec_wsum_12"	"Sum of monthly precipitation December"	"Sum of monthly precipitation December"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	12	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_prec_wsum_12_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_01"	"Bioclim 1"	"Bioclim 1"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_01_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_02"	"Bioclim 2"	"Bioclim 2"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_02_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_03"	"Bioclim 3"	"Bioclim 3"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_03_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_04"	"Bioclim 4"	"Bioclim 4"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_04_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_05"	"Bioclim 5"	"Bioclim 5"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_05_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_06"	"Bioclim 6"	"Bioclim 6"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_06_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_07"	"Bioclim 7"	"Bioclim 7"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_07_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_08"	"Bioclim 8"	"Bioclim 8"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_08_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_09"	"Bioclim 9"	"Bioclim 9"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_09_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_10"	"Bioclim 10"	"Bioclim 10"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_10_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_11"	"Bioclim 11"	"Bioclim 11"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_11_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_12"	"Bioclim 12"	"Bioclim 12"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_12_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_13"	"Bioclim 13"	"Bioclim 13"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_13_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_14"	"Bioclim 14"	"Bioclim 14"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_14_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_15"	"Bioclim 15"	"Bioclim 15"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_15_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_16"	"Bioclim 16"	"Bioclim 16"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_16_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_17"	"Bioclim 17"	"Bioclim 17"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_17_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_18"	"Bioclim 18"	"Bioclim 18"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_18_lonlat.tif"
+"Freshwater"	"FW_hydro_avg_19"	"Bioclim 19"	"Bioclim 19"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_avg_19_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_01"	"Bioclim 1"	"Bioclim 1"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_01_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_02"	"Bioclim 2"	"Bioclim 2"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_02_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_03"	"Bioclim 3"	"Bioclim 3"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_03_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_04"	"Bioclim 4"	"Bioclim 4"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_04_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_05"	"Bioclim 5"	"Bioclim 5"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_05_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_06"	"Bioclim 6"	"Bioclim 6"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_06_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_07"	"Bioclim 7"	"Bioclim 7"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_07_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_08"	"Bioclim 8"	"Bioclim 8"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_08_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_09"	"Bioclim 9"	"Bioclim 9"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_09_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_10"	"Bioclim 10"	"Bioclim 10"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_10_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_11"	"Bioclim 11"	"Bioclim 11"	FALSE	FALSE	TRUE	815	0.008333333	"[degrees Celsius] * 10"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_11_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_12"	"Bioclim 12"	"Bioclim 12"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_12_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_13"	"Bioclim 13"	"Bioclim 13"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_13_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_14"	"Bioclim 14"	"Bioclim 14"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_14_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_15"	"Bioclim 15"	"Bioclim 15"	FALSE	FALSE	TRUE	815	0.008333333	"* 100"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_15_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_16"	"Bioclim 16"	"Bioclim 16"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_16_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_17"	"Bioclim 17"	"Bioclim 17"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_17_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_18"	"Bioclim 18"	"Bioclim 18"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_18_lonlat.tif"
+"Freshwater"	"FW_hydro_wavg_19"	"Bioclim 19"	"Bioclim 19"	FALSE	FALSE	TRUE	815	0.008333333	"[mm]"	"in situ measurement"	"30 arsecond"	"WorldClim, Hijmans, R. J., Cameron, S. E., Parra, J. L., Jones, P. G., & Jarvis, A. (2005). Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology, 25(15), 1965-1978."	1950	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_hydro_wavg_19_lonlat.tif"
+"Freshwater"	"FW_lc_min_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_01_lonlat.tif"
+"Freshwater"	"FW_lc_min_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_02_lonlat.tif"
+"Freshwater"	"FW_lc_min_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_03_lonlat.tif"
+"Freshwater"	"FW_lc_min_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_04_lonlat.tif"
+"Freshwater"	"FW_lc_min_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_05_lonlat.tif"
+"Freshwater"	"FW_lc_min_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_06_lonlat.tif"
+"Freshwater"	"FW_lc_min_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_07_lonlat.tif"
+"Freshwater"	"FW_lc_min_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_08_lonlat.tif"
+"Freshwater"	"FW_lc_min_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_09_lonlat.tif"
+"Freshwater"	"FW_lc_min_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_10_lonlat.tif"
+"Freshwater"	"FW_lc_min_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_11_lonlat.tif"
+"Freshwater"	"FW_lc_min_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_min_12_lonlat.tif"
+"Freshwater"	"FW_lc_max_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_01_lonlat.tif"
+"Freshwater"	"FW_lc_max_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_02_lonlat.tif"
+"Freshwater"	"FW_lc_max_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_03_lonlat.tif"
+"Freshwater"	"FW_lc_max_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_04_lonlat.tif"
+"Freshwater"	"FW_lc_max_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_05_lonlat.tif"
+"Freshwater"	"FW_lc_max_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_06_lonlat.tif"
+"Freshwater"	"FW_lc_max_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_07_lonlat.tif"
+"Freshwater"	"FW_lc_max_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_08_lonlat.tif"
+"Freshwater"	"FW_lc_max_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_09_lonlat.tif"
+"Freshwater"	"FW_lc_max_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_10_lonlat.tif"
+"Freshwater"	"FW_lc_max_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_11_lonlat.tif"
+"Freshwater"	"FW_lc_max_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_max_12_lonlat.tif"
+"Freshwater"	"FW_lc_range_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_01_lonlat.tif"
+"Freshwater"	"FW_lc_range_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_02_lonlat.tif"
+"Freshwater"	"FW_lc_range_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_03_lonlat.tif"
+"Freshwater"	"FW_lc_range_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_04_lonlat.tif"
+"Freshwater"	"FW_lc_range_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_05_lonlat.tif"
+"Freshwater"	"FW_lc_range_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_06_lonlat.tif"
+"Freshwater"	"FW_lc_range_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_07_lonlat.tif"
+"Freshwater"	"FW_lc_range_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_08_lonlat.tif"
+"Freshwater"	"FW_lc_range_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_09_lonlat.tif"
+"Freshwater"	"FW_lc_range_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_10_lonlat.tif"
+"Freshwater"	"FW_lc_range_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_11_lonlat.tif"
+"Freshwater"	"FW_lc_range_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_range_12_lonlat.tif"
+"Freshwater"	"FW_lc_avg_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_01_lonlat.tif"
+"Freshwater"	"FW_lc_avg_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_02_lonlat.tif"
+"Freshwater"	"FW_lc_avg_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_03_lonlat.tif"
+"Freshwater"	"FW_lc_avg_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_04_lonlat.tif"
+"Freshwater"	"FW_lc_avg_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_05_lonlat.tif"
+"Freshwater"	"FW_lc_avg_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_06_lonlat.tif"
+"Freshwater"	"FW_lc_avg_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_07_lonlat.tif"
+"Freshwater"	"FW_lc_avg_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_08_lonlat.tif"
+"Freshwater"	"FW_lc_avg_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_09_lonlat.tif"
+"Freshwater"	"FW_lc_avg_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_10_lonlat.tif"
+"Freshwater"	"FW_lc_avg_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_11_lonlat.tif"
+"Freshwater"	"FW_lc_avg_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_avg_12_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_01"	"Evergreen/deciduous needleleaf trees"	"Evergreen/deciduous needleleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_01_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_02"	"Evergreen broadleaf trees"	"Evergreen broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_02_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_03"	"Deciduous broadleaf trees"	"Deciduous broadleaf trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_03_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_04"	"Mixed/other trees"	"Mixed/other trees"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_04_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_05"	"Shrubs"	"Shrubs"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_05_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_06"	"Herbaceous vegetation"	"Herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_06_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_07"	"Cultivated and managed vegetation"	"Cultivated and managed vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_07_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_08"	"Regularly flooded shrub/herbaceous vegetation"	"Regularly flooded shrub/herbaceous vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_08_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_09"	"Urban/built-up"	"Urban/built-up"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_09_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_10"	"Snow/ice"	"Snow/ice"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_10_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_11"	"Barren lands/sparse vegetation"	"Barren lands/sparse vegetation"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_11_lonlat.tif"
+"Freshwater"	"FW_lc_wavg_12"	"Open water"	"Open water"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"Satellite (GlobCover , MODIS, GLC2000, DISCover )"	"30 arsecond"	"Consensus Land Cover, Tuanmu, M. N., & Jetz, W. (2014). A global 1-km consensus land-cover product for biodiversity and ecosystem modelling. Global Ecology and Biogeography, 23(9), 1031-1045."	1992	1	1	2006	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_lc_wavg_12_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_01"	"Archean"	"Archean"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_01_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_02"	"Archean, Permian"	"Archean, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_02_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_03"	"Cambrian"	"Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_03_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_04"	"Cambrian, Precambrian"	"Cambrian, Precambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_04_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_05"	"Cambrian, Proterozoic"	"Cambrian, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_05_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_06"	"Carboniferous"	"Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_06_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_07"	"Carboniferous, Devonian"	"Carboniferous, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_07_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_08"	"Carboniferous, Miocene"	"Carboniferous, Miocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_08_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_09"	"Cenozoic"	"Cenozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_09_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_10"	"Cenozoic, Mesozoic"	"Cenozoic, Mesozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_10_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_11"	"Cretaceous"	"Cretaceous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_11_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_12"	"Cretaceous, Carboniferous"	"Cretaceous, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_12_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_13"	"Cretaceous, Devonian"	"Cretaceous, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_13_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_14"	"Cretaceous, Jurassic"	"Cretaceous, Jurassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_14_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_15"	"Cretaceous, Mississippian"	"Cretaceous, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_15_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_16"	"Cretaceous, Paleogene, Neogene"	"Cretaceous, Paleogene, Neogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_16_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_17"	"Cretaceous, Permian"	"Cretaceous, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_17_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_18"	"Cretaceous, Tertiary"	"Cretaceous, Tertiary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_18_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_19"	"Cretaceous, Triassic"	"Cretaceous, Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_19_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_20"	"Devonian"	"Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_20_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_21"	"Devonian, Cambrian"	"Devonian, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_21_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_22"	"Devonian, Ordovician"	"Devonian, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_22_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_23"	"Devonian, Proterozoic"	"Devonian, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_23_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_24"	"Devonian, Silurian"	"Devonian, Silurian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_24_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_25"	"Devonian, Silurian, Ordovician"	"Devonian, Silurian, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_25_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_26"	"Holocene"	"Holocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_26_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_27"	"Ice"	"Ice"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_27_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_28"	"Jurassic"	"Jurassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_28_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_29"	"Jurassic, Cambrian"	"Jurassic, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_29_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_30"	"Jurassic, Carboniferous"	"Jurassic, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_30_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_31"	"Jurassic, Devonian"	"Jurassic, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_31_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_32"	"Jurassic, Mississippian"	"Jurassic, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_32_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_33"	"Jurassic, Ordovician"	"Jurassic, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_33_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_34"	"Jurassic, Permian"	"Jurassic, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_34_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_35"	"Jurassic, Triassic"	"Jurassic, Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_35_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_36"	"Kimberlite"	"Kimberlite"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_36_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_37"	"Mesozoic"	"Mesozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_37_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_38"	"Mesozoic, Cenozoic"	"Mesozoic, Cenozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_38_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_39"	"Mesozoic, Paleozoic"	"Mesozoic, Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_39_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_40"	"Mesozoic, Palezoic"	"Mesozoic, Palezoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_40_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_41"	"Miocene"	"Miocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_41_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_42"	"Mississippian"	"Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_42_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_43"	"Mississippian, Cambrian"	"Mississippian, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_43_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_44"	"Mississippian, Devonian"	"Mississippian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_44_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_45"	"Neogene"	"Neogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_45_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_46"	"Neogene, Paleogene"	"Neogene, Paleogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_46_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_47"	"Ordovician"	"Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_47_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_48"	"Ordovician, Cambrian"	"Ordovician, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_48_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_49"	"Ordovician, Proterozoic"	"Ordovician, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_49_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_50"	"Paleogene"	"Paleogene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_50_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_51"	"Paleogene, Cretaceous"	"Paleogene, Cretaceous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_51_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_52"	"Paleozoic"	"Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_52_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_53"	"Paleozoic, Mesozoic"	"Paleozoic, Mesozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_53_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_54"	"Paleozoic, Precambrian"	"Paleozoic, Precambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_54_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_55"	"Paleozoic, Proterozoic"	"Paleozoic, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_55_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_56"	"Pennsylvanian"	"Pennsylvanian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_56_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_57"	"Pennsylvanian, Devonian"	"Pennsylvanian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_57_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_58"	"Pennsylvanian, Mississippian"	"Pennsylvanian, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_58_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_59"	"Permian"	"Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_59_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_60"	"Permian, Carboniferous"	"Permian, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_60_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_61"	"Permian, Devonian"	"Permian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_61_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_62"	"Permian, Mississippian"	"Permian, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_62_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_63"	"Permian, Pennsylvanian"	"Permian, Pennsylvanian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_63_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_64"	"Permian, Triassic"	"Permian, Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_64_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_65"	"Pleistocene"	"Pleistocene"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_65_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_66"	"Pliocene, Quaternary"	"Pliocene, Quaternary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_66_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_67"	"Precambrian"	"Precambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_67_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_68"	"Precambrian, Devonian"	"Precambrian, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_68_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_69"	"Precambrian, Paleozoic"	"Precambrian, Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_69_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_70"	"Proterozoic"	"Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_70_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_71"	"Proterozoic, Archean"	"Proterozoic, Archean"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_71_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_72"	"Quaternary"	"Quaternary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_72_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_73"	"Quaternary, Neogne"	"Quaternary, Neogne"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_73_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_74"	"Quaternary, Tertiary"	"Quaternary, Tertiary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_74_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_75"	"Salt"	"Salt"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_75_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_76"	"Silurian"	"Silurian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_76_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_77"	"Silurian, Cambrian"	"Silurian, Cambrian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_77_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_78"	"Silurian, Ordovician"	"Silurian, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_78_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_79"	"Silurian, Proterozoic"	"Silurian, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_79_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_80"	"Tertiary"	"Tertiary"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_80_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_81"	"Tertiary, Cretaceous"	"Tertiary, Cretaceous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_81_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_82"	"Triassic"	"Triassic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_82_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_83"	"Triassic, Carboniferous"	"Triassic, Carboniferous"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_83_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_84"	"Triassic, Devonian"	"Triassic, Devonian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_84_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_85"	"Triassic, Mississippian"	"Triassic, Mississippian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_85_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_86"	"Triassic, Ordovician"	"Triassic, Ordovician"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_86_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_87"	"Triassic, Paleozoic"	"Triassic, Paleozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_87_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_88"	"Triassic, Pennsylvanian"	"Triassic, Pennsylvanian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_88_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_89"	"Triassic, Permian"	"Triassic, Permian"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_89_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_90"	"Triassic, Proterozoic"	"Triassic, Proterozoic"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_90_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_91"	"Unknown"	"Unknown"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_91_lonlat.tif"
+"Freshwater"	"FW_geo_wsum_92"	"Water"	"Water"	FALSE	FALSE	TRUE	815	0.008333333	"weighted count"	"in situ measurement"	"30 arsecond"	"USGS, USGS International Surface Geology < http://certmapper.cr.usgs.gov/data/envision/index.html?widgets=geologymaps >. Downloaded from < http://worldgrids.org/doku.php?id=wiki:geaisg3 >"	1960	1	1	2000	1	1	"weighted sum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_geo_wsum_92_lonlat.tif"
+"Freshwater"	"FW_soil_min_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_01_lonlat.tif"
+"Freshwater"	"FW_soil_min_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_02_lonlat.tif"
+"Freshwater"	"FW_soil_min_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_03_lonlat.tif"
+"Freshwater"	"FW_soil_min_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_04_lonlat.tif"
+"Freshwater"	"FW_soil_min_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_05_lonlat.tif"
+"Freshwater"	"FW_soil_min_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_06_lonlat.tif"
+"Freshwater"	"FW_soil_min_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_07_lonlat.tif"
+"Freshwater"	"FW_soil_min_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_08_lonlat.tif"
+"Freshwater"	"FW_soil_min_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_09_lonlat.tif"
+"Freshwater"	"FW_soil_min_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"minimum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_min_10_lonlat.tif"
+"Freshwater"	"FW_soil_max_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_01_lonlat.tif"
+"Freshwater"	"FW_soil_max_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_02_lonlat.tif"
+"Freshwater"	"FW_soil_max_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_03_lonlat.tif"
+"Freshwater"	"FW_soil_max_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_04_lonlat.tif"
+"Freshwater"	"FW_soil_max_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_05_lonlat.tif"
+"Freshwater"	"FW_soil_max_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_06_lonlat.tif"
+"Freshwater"	"FW_soil_max_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_07_lonlat.tif"
+"Freshwater"	"FW_soil_max_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_08_lonlat.tif"
+"Freshwater"	"FW_soil_max_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_09_lonlat.tif"
+"Freshwater"	"FW_soil_max_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"maximum"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_max_10_lonlat.tif"
+"Freshwater"	"FW_soil_range_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_01_lonlat.tif"
+"Freshwater"	"FW_soil_range_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_02_lonlat.tif"
+"Freshwater"	"FW_soil_range_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_03_lonlat.tif"
+"Freshwater"	"FW_soil_range_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_04_lonlat.tif"
+"Freshwater"	"FW_soil_range_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_05_lonlat.tif"
+"Freshwater"	"FW_soil_range_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_06_lonlat.tif"
+"Freshwater"	"FW_soil_range_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_07_lonlat.tif"
+"Freshwater"	"FW_soil_range_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_08_lonlat.tif"
+"Freshwater"	"FW_soil_range_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_09_lonlat.tif"
+"Freshwater"	"FW_soil_range_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"range"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_range_10_lonlat.tif"
+"Freshwater"	"FW_soil_avg_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_01_lonlat.tif"
+"Freshwater"	"FW_soil_avg_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_02_lonlat.tif"
+"Freshwater"	"FW_soil_avg_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_03_lonlat.tif"
+"Freshwater"	"FW_soil_avg_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_04_lonlat.tif"
+"Freshwater"	"FW_soil_avg_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_05_lonlat.tif"
+"Freshwater"	"FW_soil_avg_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_06_lonlat.tif"
+"Freshwater"	"FW_soil_avg_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_07_lonlat.tif"
+"Freshwater"	"FW_soil_avg_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_08_lonlat.tif"
+"Freshwater"	"FW_soil_avg_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_09_lonlat.tif"
+"Freshwater"	"FW_soil_avg_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_avg_10_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_01"	"Soil organic carbon (ORCDRC) across sub-catchment"	"Soil organic carbon (ORCDRC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[g/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_01_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_02"	"Soil pH in H2O (PHIHOX) across sub-catchment"	"Soil pH in H2O (PHIHOX) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"pH * 10"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_02_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_03"	"Sand content mass fraction (SNDPPT) across sub-catchment"	"Sand content mass fraction (SNDPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_03_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_04"	"Silt content mass fraction (SLTPPT) across sub-catchment"	"Silt content mass fraction (SLTPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_04_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_05"	"Clay content mass fraction (CLYPPT) across sub-catchment"	"Clay content mass fraction (CLYPPT) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_05_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_06"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	"Coarse fragments (> 2 mm fraction) volumetric (CFRVOL) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_06_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_07"	"Cation exchange capacity (CEC) across sub-catchment"	"Cation exchange capacity (CEC) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cmol/kg]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_07_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_08"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	"Bulk density of the fine earth fraction (BLD) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[kg / m3]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_08_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_09"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	"Depth to bedrock (R horizon) up to maximum 240 cm (BDRICM) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[cm]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_09_lonlat.tif"
+"Freshwater"	"FW_soil_wavg_10"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	"Predicted probability of occurence (0-100%) of R horizon (BDRLOG) across sub-catchment"	FALSE	FALSE	TRUE	815	0.008333333	"[%]"	"in situ measurement"	"30 arsecond"	"ISRIC, Hengl, T., de Jesus, J. M., MacMillan, R. A., Batjes, N.H., Heuvelink, G.B., Ribeiro, E., Samuel-Rosa, A., Kempen, B., Leenaars, J. G. B., Walsh, M. G., Gonzalez & Gonzalez, M. R. (2014). SoilGrids1km???Global soil information based on automated mapping. PLoS ONE, e105992"	1950	1	1	2005	1	1	"weighted average"	NA	TRUE	10	"https://www.lifewatch.be/sdmpredictors/FW_soil_wavg_10_lonlat.tif"