diff --git a/src/app/features/layer-tool/layer-tool.component.html b/src/app/features/layer-tool/layer-tool.component.html
index f97e7fda..6b676c23 100644
--- a/src/app/features/layer-tool/layer-tool.component.html
+++ b/src/app/features/layer-tool/layer-tool.component.html
@@ -43,7 +43,7 @@
- {{dataInteraction.description}}
+ Information on the layer can be found under {{dataInteraction.info_url}}
diff --git a/src/app/features/layers-interaction/layers-interaction.class.ts b/src/app/features/layers-interaction/layers-interaction.class.ts
index da5a33f0..f58005db 100644
--- a/src/app/features/layers-interaction/layers-interaction.class.ts
+++ b/src/app/features/layers-interaction/layers-interaction.class.ts
@@ -10,6 +10,7 @@ export class DataInteractionClass {
layer_type: string;
cm_id?: string;
download_url?: string;
+ info_url?: string;
type_of_layer?: string;
description?: string;
custom_symbology?: any;
diff --git a/src/app/features/layers-interaction/layers-interaction.data.ts b/src/app/features/layers-interaction/layers-interaction.data.ts
index dc43ce75..d3719949 100644
--- a/src/app/features/layers-interaction/layers-interaction.data.ts
+++ b/src/app/features/layers-interaction/layers-interaction.data.ts
@@ -27,30 +27,37 @@ export const DataInteractionArray: DataInteractionClass[] = [
{id: idDefaultLayer, name: 'Heat density total', category: 'Buildings', isSelected: true,
workspaceName: 'heat_tot_curr_density', zoomLevel: 0, ref: ['overall', 'demand'], styleName: 'heat_tot_curr_density', layer_type: defaultLayerType,
download_url: gitlabUrl + '/heat/heat_tot_curr_density/raw/master/data/heat_tot_curr_density.tif',
+ info_url: gitlabUrl + '/heat/heat_tot_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/heat/heat_tot_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Heat density residential sector', category: 'Buildings', isSelected: false,
workspaceName: 'heat_res_curr_density', zoomLevel: 0, ref: ['overall','demand'], styleName: 'heat_tot_curr_density', layer_type: defaultLayerType,
download_url: gitlabUrl + '/heat/heat_res_curr_density/raw/master/data/heat_res_curr_density.tif',
+ info_url: gitlabUrl + '/heat/heat_res_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/heat/heat_res_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Heat density non-residential sector', category: 'Buildings', isSelected: false,
workspaceName: 'heat_nonres_curr_density', zoomLevel: 0, ref: ['overall', 'demand'], styleName: 'heat_tot_curr_density', layer_type: defaultLayerType,
download_url: gitlabUrl + '/heat/heat_nonres_curr_density/raw/master/data/heat_nonres_curr_density.tif',
+ info_url: gitlabUrl + '/heat/heat_nonres_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/heat/heat_nonres_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Cooling density total', category: 'Buildings', isSelected: false,
workspaceName: 'cool_tot_curr_density', zoomLevel: 0, ref: ['overall', 'demand'], styleName: 'cool_density', layer_type: 'cooling',
download_url: gitlabUrl + '/heat/cool_tot_curr_density/raw/master/data/cool_tot_curr_density.tif',
+ info_url: gitlabUrl + '/heat/cool_tot_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/heat/cool_tot_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Gross floor area total', category: 'Buildings', isSelected: false,
workspaceName: 'gfa_tot_curr_density', zoomLevel: 0, ref: ['overall', 'buildings'], styleName: 'gfa_tot_curr_density', layer_type: gfa_type,
download_url: gitlabUrl + '/gfa_tot_curr_density/raw/master/data/gfa_tot_curr_density.tif',
+ info_url: gitlabUrl + '/gfa_tot_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/gfa_tot_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Gross floor area residential', category: 'Buildings', isSelected: false,
workspaceName: 'gfa_res_curr_density', zoomLevel: 0, ref: ['overall', 'buildings'], styleName: 'gfa_tot_curr_density', layer_type: gfa_type,
download_url: gitlabUrl + '/gfa_res_curr_density/raw/master/data/gfa_res_curr_density.tif',
+ info_url: gitlabUrl + '/gfa_res_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/gfa_res_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Gross floor area non-residential', category: 'Buildings', isSelected: false,
workspaceName: 'gfa_nonres_curr_density', zoomLevel: 0, ref: ['overall', 'buildings'], styleName: 'gfa_tot_curr_density', layer_type: gfa_type,
download_url: gitlabUrl + '/gfa_nonres_curr_density/raw/master/data/gfa_nonres_curr_density.tif',
+ info_url: gitlabUrl + '/gfa_nonres_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/gfa_nonres_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
@@ -58,14 +65,17 @@ export const DataInteractionArray: DataInteractionClass[] = [
{id: idDefaultLayer, name: 'Building volumes total', category: 'Buildings', isSelected: false,
workspaceName: 'vol_tot_curr_density', zoomLevel: 0, ref: ['overall', 'buildings'], styleName: 'vol_tot_curr_density', layer_type: building_volume_type,
download_url: gitlabUrl + '/vol_tot_curr_density/raw/master/data/vol_tot_curr_density.tif',
+ info_url: gitlabUrl + '/vol_tot_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/vol_tot_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Building volumes residential', category: 'Buildings', isSelected: false,
workspaceName: 'vol_res_curr_density', zoomLevel: 0, ref: ['overall', 'buildings'], styleName: 'vol_tot_curr_density', layer_type: building_volume_type,
download_url: gitlabUrl + '/vol_res_curr_density/raw/master/data/vol_res_curr_density.tif',
+ info_url: gitlabUrl + '/vol_res_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/vol_res_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Building volumes non-residential', category: 'Buildings', isSelected: false,
workspaceName: 'vol_nonres_curr_density', zoomLevel: 0, ref: ['overall', 'buildings'], styleName: 'vol_tot_curr_density', layer_type: building_volume_type,
download_url: gitlabUrl + '/vol_nonres_curr_density/raw/master/data/vol_nonres_curr_density.tif',
+ info_url: gitlabUrl + '/vol_nonres_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/vol_nonres_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
@@ -73,98 +83,118 @@ export const DataInteractionArray: DataInteractionClass[] = [
{id: idDefaultLayer, name: 'Share of gross floor area - constructions before 1975', category: 'Buildings', isSelected: false,
workspaceName: 'ghs_built_1975_100_share', zoomLevel: 0, ref: ['overall', 'buildings'], styleName: 'construction_periods', layer_type: cp_type,
download_url: gitlabUrl + '/construction_periods/ghs_built_1975_100_share/raw/master/data/GHS_BUILT_1975_100_share.tif',
+ info_url: gitlabUrl + '/construction_periods/ghs_built_1975_100_share/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/construction_periods/ghs_built_1975_100_share/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Share of gross floor area - constructions between 1975 and 1990', category: 'Buildings', isSelected: false,
workspaceName: 'ghs_built_1990_100_share', zoomLevel: 0, ref: ['overall', 'buildings'], styleName: 'construction_periods', layer_type: cp_type,
download_url: gitlabUrl + '/construction_periods/ghs_built_1990_100_share/raw/master/data/GHS_BUILT_1990_100_share.tif',
+ info_url: gitlabUrl + '/construction_periods/ghs_built_1990_100_share/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/construction_periods/ghs_built_1990_100_share/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Share of gross floor area - constructions between 1990 and 2000', category: 'Buildings', isSelected: false,
workspaceName: 'ghs_built_2000_100_share', zoomLevel: 0, ref: ['overall', 'buildings'], styleName: 'construction_periods', layer_type: cp_type,
download_url: gitlabUrl + '/construction_periods/ghs_built_2000_100_share/raw/master/data/GHS_BUILT_2000_100_share.tif',
+ info_url: gitlabUrl + '/construction_periods/ghs_built_2000_100_share/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/construction_periods/ghs_built_2000_100_share/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Share of gross floor area - constructions between 2000 and 2014', category: 'Buildings', isSelected: false,
workspaceName: 'ghs_built_2014_100_share', zoomLevel: 0, ref: ['overall', 'buildings'], styleName: 'construction_periods', layer_type: cp_type,
download_url: gitlabUrl + '/construction_periods/ghs_built_2014_100_share/raw/master/data/GHS_BUILT_2014_100_share.tif',
+ info_url: gitlabUrl + '/construction_periods/ghs_built_2014_100_share/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/construction_periods/ghs_built_2014_100_share/blob/master/README.md', isLoading:false, dataType:'raster'},
// Industry
{id: idDefaultLayer, name: 'Industrial Sites Emissions', category: 'Industry', isSelected: false,
workspaceName: 'industrial_database_emissions', zoomLevel: 0, ref: ['overall', 'industry'], styleName: 'industrial_emissions', layer_type: 'industrial_database_emissions',order:industry_layer_order,
download_url: gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/raw/master/data/Industrial_Database.csv',
+ info_url: gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/blob/master/README.md', isLoading:false, year:2014, schema:'public', dataType:'csv'},
{id: idDefaultLayer, name: 'Industrial Sites Excess Heat', category: 'Industry', isSelected: false,
workspaceName: 'industrial_database_excess_heat', zoomLevel: 0, ref: ['overall', 'industry'], styleName: 'industrial_excess_heat', layer_type: 'industrial_database_excess_heat',order:industry_layer_order,
download_url: gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/raw/master/data/Industrial_Database.csv',
+ info_url: gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/blob/master/README.md', isLoading:false, year:2014, schema:'public', dataType:'csv'},
{id: idDefaultLayer, name: 'Industrial Sites Company Name', category: 'Industry', isSelected: false,
workspaceName: 'industrial_database_compagnyname', zoomLevel: 0, ref: ['overall', 'industry'], styleName: 'industrial_compagny_name', layer_type: 'industrial_database_compagnyname', order:industry_layer_order,
download_url: gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/raw/master/data/Industrial_Database.csv',
+ info_url: gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/blob/master/README.md', isLoading:false, year:2014, schema:'public', dataType:'csv'},
{id: idDefaultLayer, name: 'Industrial Sites Subsector', category: 'Industry', isSelected: false,
workspaceName: 'industrial_database_subsector', zoomLevel: 0, ref: ['overall', 'industry'], styleName: 'industrial_subsector', layer_type: 'industrial_database_subsector', order:industry_layer_order,
download_url: gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/raw/master/data/Industrial_Database.csv',
+ info_url: gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/industrial_sites/industrial_sites_Industrial_Database/blob/master/README.md', isLoading:false, year:2014, schema:'public', dataType:'csv'},
// Population
{id: idDefaultLayer, name: 'Population total', category: 'Population', isSelected: false,
workspaceName: 'pop_tot_curr_density', zoomLevel: 0, ref: ['overall', 'demand'], styleName: 'pop_tot_curr_density', layer_type: population_type,
download_url: gitlabUrl + '/pop_tot_curr_density/raw/master/data/pop_tot_curr_density.tif',
+ info_url: gitlabUrl + '/pop_tot_curr_density/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/pop_tot_curr_density/blob/master/README.md', isLoading:false, dataType:'raster'},
// Potentials
{id: idDefaultLayer, name: 'Waste Water Treatment Plants - Power', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'wwtp_power', zoomLevel: zoomLevelDetectChange, ref: ['overall', 'potential'], styleName: 'default', layer_type: 'wwtp_power',
download_url: gitlabUrl + '/potential/WWTP/raw/master/data/2015/WWTP_2015.csv',
+ info_url: gitlabUrl + '/potential/WWTP/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential/WWTP/blob/master/README.md', isLoading:false, dataType:'csv'},
{id: idDefaultLayer, name: 'Waste Water Treatment Plants - Capacity', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'wwtp_capacity', zoomLevel: zoomLevelDetectChange, ref: ['overall', 'potential'], styleName: 'wwtp_capacity', layer_type: 'wwtp_capacity',
download_url: gitlabUrl + '/potential/WWTP/raw/master/data/2015/WWTP_2015.csv',
+ info_url: gitlabUrl + '/potential/WWTP/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential/WWTP/blob/master/README.md', isLoading:false, dataType:'csv'},
{id: idDefaultLayer, name: 'Agricultural residues', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'agricultural_residues_view', zoomLevel: 0, ref: ['overall','potential'], styleName: 'agriculture', layer_type: 'agricultural_residues_view',
download_url: gitlabUrl + '/potential/potential_biomass/raw/master/data/agricultural_residues.csv',
+ info_url: gitlabUrl + '/potential/potential_biomass/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential/potential_biomass/blob/master/README.md', isLoading:false, year:1970, schema:'geo', dataType:'csv'},
{id: idDefaultLayer, name: 'Livestock effluents', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'livestock_effluents_view', zoomLevel: 0, ref: ['overall','potential'], styleName: 'livestock', layer_type: 'livestock_effluents_view',
download_url: gitlabUrl + '/potential/potential_biomass/raw/master/data/livestock_effluents.csv',
+ info_url: gitlabUrl + '/potential/potential_biomass/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential/potential_biomass/blob/master/README.md', isLoading:false, year:1970, schema:'geo', dataType:'csv'},
{id: idDefaultLayer, name: 'Forest residues', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'potential_forest', zoomLevel: 0, ref: ['overall','potential'], styleName: 'forest', layer_type: 'potential_forest',
download_url: gitlabUrl + '/potential/potential_biomass/raw/master/data/forest_residues.csv',
+ info_url: gitlabUrl + '/potential_biomass/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential_biomass/blob/master/README.md', isLoading:false, dataType:'csv'},
{id: idDefaultLayer, name: 'Municipal solid waste', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'solid_waste_view', zoomLevel: 0, ref: ['overall','potential'], styleName: 'municipal_waste', layer_type: 'solid_waste_view',
download_url: gitlabUrl + '/potential/potential_municipal_solid_waste/raw/master/data/solid_waste.csv',
+ info_url: gitlabUrl + '/potential/potential_municipal_solid_waste/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential/potential_municipal_solid_waste/blob/master/README.md', isLoading:false, year:2011, schema:'geo', dataType:'csv'},
{id: idDefaultLayer, name: 'Wind potential at 50 meters', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'wind_50m', zoomLevel: 0, ref: ['overall','potential'], styleName: 'wind', layer_type: 'wind_50m',
download_url: gitlabUrl + '/potential/potential_wind/raw/master/data/wind_50m.tif',
+ info_url: gitlabUrl + '/potential/potential_wind/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential/potential_wind/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Solar radiation on building footprint', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'solar_optimal_total', zoomLevel: 0, ref: ['overall', 'potential'], styleName: 'solar_optimal_total', layer_type: 'solar_optimal_total',
download_url: gitlabUrl + '/potential/potential_solar/raw/master/data/solar_opt.tif',
+ info_url: gitlabUrl + '/potential/potential_solar/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential/potential_solar/blob/master/README.md', isLoading:false, dataType:'raster'},
// shallow geothermal vector layer
{id: idDefaultLayer, name: 'Geothermal potential Heat Conductivity ', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'shallow_geothermal_potential', zoomLevel: 0, ref: ['overall','potential']/*['no_showed']*/, styleName: 'shallow_geothermal_potential', layer_type: 'shallow_geothermal_potential',
download_url: gitlabUrl + '/potential/potential_shallowgeothermal/-/archive/master/potential_shallowgeothermal-master.zip?path=data',
+ info_url: gitlabUrl + '/potential/potential_shallowgeothermal/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential/potential_shallowgeothermal/blob/master/README.md', isLoading:false, year:1970, schema:'geo', dataType:'shp'},
{id: idDefaultLayer, name: 'Potential solarthermal collectors - rooftop', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'potential_solarthermal_collectors_rooftop', zoomLevel: 0, ref: ['overall', 'potential'], styleName: 'solar_potential_fields', layer_type: solar_potential_fields_type,
download_url: gitlabUrl + '/potential/potential_solarthermal_collectors_rooftop/raw/master/data/potential_solarthermal_collectors_rooftop.tif',
+ info_url: gitlabUrl + '/potential/potential_solarthermal_collectors_rooftop/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential/potential_solarthermal_collectors_rooftop/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Potential solarthermal collectors - open field', category: 'R.E.S. Potential', isSelected: false,
workspaceName: 'potential_solarthermal_collectors_open_field', zoomLevel: 0, ref: ['overall', 'potential'], styleName: 'solar_potential_fields', layer_type: solar_potential_fields_type,
download_url: gitlabUrl + '/potential/potential_solarthermal_collectors_open_field/raw/master/data/potential_solarthermal_collectors_open_field.tif',
+ info_url: gitlabUrl + '/potential/potential_solarthermal_collectors_open_field/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/potential/potential_solarthermal_collectors_open_field/blob/master/README.md', isLoading:false, dataType:'raster'},
@@ -178,28 +208,34 @@ export const DataInteractionArray: DataInteractionClass[] = [
{id: idDefaultLayer, name: 'Average temperature', category: 'Climate', isSelected: false,
workspaceName: 'land_surface_temperature', zoomLevel: 0, ref: ['overall', 'climate'], styleName: 'temp_v2', layer_type: 'land_surface_temperature',
download_url: gitlabUrl + '/climate/land_surface_temperature/raw/master/data/land_surface_temperature.tif',
+ info_url: gitlabUrl + '/climate/land_surface_temperature/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/climate/land_surface_temperature/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Cooling degree days', category: 'Climate', isSelected: false,
workspaceName: 'cdd_curr', zoomLevel: 0, ref: ['overall', 'climate'], styleName: 'cdd_curr_tif', layer_type: 'cdd_curr',
download_url: gitlabUrl + '/climate/CDD_ha_curr/raw/master/data/CDD_curr.tif',
+ info_url: gitlabUrl + '/climate/CDD_ha_curr/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/climate/CDD_ha_curr/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Heating degree days', category: 'Climate', isSelected: false,
workspaceName: 'hdd_curr', zoomLevel: 0, ref: ['overall', 'climate'], styleName: 'hdd_curr_tif', layer_type: 'hdd_curr',
download_url: gitlabUrl + '/climate/HDD_ha_curr/raw/master/data/HDD_curr.tif',
+ info_url: gitlabUrl + '/climate/HDD_ha_curr/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/climate/HDD_ha_curr/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Solar radiation', category: 'Climate', isSelected: false,
workspaceName: 'solar_radiation', zoomLevel: 0, ref: ['overall', 'climate'], styleName: 'solar_optimal_total', layer_type: 'climate_solar_radiation',
download_url: gitlabUrl + '/climate/climate_solar_radiation/raw/master/data/output_solar_radiation.tif',
+ info_url: gitlabUrl + '/climate/climate_solar_radiation/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/climate/climate_solar_radiation/blob/master/README.md', isLoading:false, dataType:'raster'},
{id: idDefaultLayer, name: 'Wind speed', category: 'Climate', isSelected: false,
workspaceName: 'output_wind_speed', zoomLevel: 0, ref: ['overall','climate'], styleName: 'wind', layer_type: 'output_wind_speed',
download_url: gitlabUrl + '/climate/climate_wind_speed/raw/master/data/EU_wind_speed_average.tif',
+ info_url: gitlabUrl + '/climate/climate_wind_speed/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/climate/climate_wind_speed/blob/master/README.md', isLoading:false, dataType:'raster'},
// Electricity
{id: idDefaultLayer, name: 'Electricity CO2 emissions - country average', category: 'Electricity', isSelected: false,
workspaceName: 'yearly_co2_emission', zoomLevel: 0, ref: ['overall', 'electricity'], styleName: 'yearly_co2_emission', layer_type: 'yearly_co2_emission',
download_url: gitlabUrl + '/load_electricity/electricity_emissions_hourly/raw/master/data/Emissions_hourly.csv',
+ info_url: gitlabUrl + '/load_electricity/electricity_emissions_hourly/blob/master/README.md',
description: 'Information on the layer can be found here: ' + gitlabUrl + '/load_electricity/electricity_emissions_hourly/blob/master/README.md', isLoading:false,
layerName:'yearly_co2_emission_factors_view', year:2015, schema:'geo', dataType:'csv', scales:[nuts0]},