diff --git a/app/assets/stylesheets/_root.sass b/app/assets/stylesheets/_root.sass index eb117cf86e..ea7c311004 100644 --- a/app/assets/stylesheets/_root.sass +++ b/app/assets/stylesheets/_root.sass @@ -1,5 +1,9 @@ body#root font-family: $landing-font-family + #wrapper + background: no-repeat linear-gradient(-45deg, #d0e0f7, $landing-background-color, $dark-cream, #89a9ec), $soft-grey + background-size: 400% 760px + animation: gradient 60s ease infinite &, #wrapper, #content height: auto @@ -8,6 +12,17 @@ body#root footer display: none + +@keyframes gradient + 0% + background-position: 0% 0% + 50% + background-position: 100% 0% + 100% + background-position: 0% 0% + + + #landing margin: 0 auto padding: 50px 0 20px @@ -229,6 +244,7 @@ body#root #new-scenario, #preset-scenario border: none + margin-bottom: 80px .header-container display: flex margin: -15px -20px 0px @@ -376,16 +392,11 @@ body#root margin-left: -6px #preset-scenario - border-top-color: $landing-gold - padding-bottom: 2rem - .header-container a - color: $landing-grey - text-decoration: underline - &:hover - color: $landing-blue + background: $soft-grey + .header-container .title + color: #462c34 .hint - color: $landing-grey margin: 1.5rem 0 .year-tabs @@ -397,7 +408,7 @@ body#root border-radius: 6px font-size: .875rem padding: 5px 13px - // border: 1px solid #d0d5d8 + border: 1px solid #d0d5d8 background: $soft-grey transition: background 0.15s ease-in a @@ -422,51 +433,81 @@ body#root &:first-child margin-left: 0 - ul.scenario-list - list-style: none - margin: 0 -20px 0 + .scenario-list + margin: 0 padding: 0 - // display: none transition: opacity 1s ease-out opacity: 0 height: 0 overflow: hidden + display: grid + gap: 1.5rem + grid-template-columns: 1fr 1fr 1fr 1fr &.show - // display: block opacity: 1 height: auto - li.title - font-weight: 500 - margin-top: 15px - margin-bottom: 2px - padding: 0 20px + .study-title + grid-column-start: 1 + grid-column-end: 5 font-size: 14px - - a - align-items: baseline - color: black - display: flex - padding: 3px 7px - margin: 0 13px + color: #462c34 + font-weight: 500 + margin-top: 1.5rem + margin-left: 1.5rem + margin-right: 1.5rem + padding-bottom: 0.5rem + border-bottom: 1px solid #e5e7eb + + a.scenario + padding: 1.5rem border-radius: 5px + background: $landing-background-color + border: 1px solid $landing-background-color + display: flex + flex-direction: column + align-items: baseline + margin: 0 position: relative - transition: background 0.15s ease-in + color: black + transition: background 0.15s ease-in, border 0.15s ease-in &:hover + border-color: #e5e7eb + cursor: pointer background: $soft-grey text-decoration: none - &:active - background: darken($landing-background-color, 3%) + .title + color: #462c34 + font-size: 14px + line-height: 1.7 + margin-bottom: 2px + .fa + margin-right: 5px + .labels + font-size: 0.75rem + margin-bottom: 1rem + display: flex + width: 100% + .group + border: 1px solid #e5e7eb + border-radius: 5px + padding: 5px 10px + background: $soft-grey + + .org + margin-left: auto + background: $landing-background-color + color: #462c34 + border-radius: 5px + border-radius: 5px + padding: 5px 10px + + // .version + // color: $landing-grey + // margin-left: 5px - .version - color: $landing-grey - margin-left: 5px - .org - font-size: 13px - line-height: 1 - margin-left: 6px span.last_updated margin-left: auto @@ -476,7 +517,14 @@ body#root span.author color: darken($landing-background-color, 100%) font-size: 0.75rem - margin-left: auto + margin-bottom: 0.75rem + + span.version + font-size: 0.75rem + color: $landing-grey + white-space: nowrap + margin-bottom: 0 + margin-top: 1rem #legal border-top: 1px solid $landing-border-color diff --git a/app/views/pages/root_page/_preset_scenario.html.haml b/app/views/pages/root_page/_preset_scenario.html.haml index f988c97442..d722a8a913 100644 --- a/app/views/pages/root_page/_preset_scenario.html.haml +++ b/app/views/pages/root_page/_preset_scenario.html.haml @@ -12,7 +12,7 @@ %a= year - @featured_scenarios.each do |year, grouped| - %ul.scenario-list{year: year} + .scenario-list{year: year} - grouped.each do |data| = render partial: 'pages/root_page/scenario_group', locals: { group: data[:name], scenarios: data[:scenarios] } - else diff --git a/app/views/pages/root_page/_scenario_group.haml b/app/views/pages/root_page/_scenario_group.haml index 7be2b30faa..bfec1bd00f 100644 --- a/app/views/pages/root_page/_scenario_group.haml +++ b/app/views/pages/root_page/_scenario_group.haml @@ -1,16 +1,25 @@ -- scenarios.each do |scenario| - - title = scenario.localized_title(I18n.locale) - - if title.to_s.include?(' - ') - %li.with_org - = link_to(my_etm_path("saved_scenarios/#{scenario.saved_scenario_id}")) do - - main_title, org = title.split(' - ', 2) - %span.who= format_subscripts(main_title) - %span.org= org.html_safe - %span.version= " ##{scenario.version}" - %span.author= scenario.author - - else - %li - = link_to(my_etm_path("saved_scenarios/#{scenario.saved_scenario_id}")) do - = format_subscripts(title) +- scenarios.reverse.group_by(&:study_en).each do |study, grouped_scenarios| + - if study.present? + %h4.study-title= study + - grouped_scenarios.each do |scenario| + - title = scenario.localized_title(I18n.locale) + + - if title.to_s.include?(' - ') + = link_to(my_etm_path("saved_scenarios/#{scenario.saved_scenario_id}"), class: 'scenario') do + - org, main_title = title.split(' - ', 2) + .labels + .group= t("areas.#{scenario.area_code}") + -# .org + -# = org.html_safe + + + %h4.title= format_subscripts(main_title) + %span.author= t('intro.featured_by', author: scenario.author) + %span.version= "##{scenario.version}" + - else + = link_to(my_etm_path("saved_scenarios/#{scenario.saved_scenario_id}"), class: 'scenario') do + .labels + .group= t("areas.#{scenario.area_code}") + %h4.title= format_subscripts(title) + %span.author= t('intro.featured_by', author: scenario.author) %span.version= "##{scenario.version}" - %span.author= scenario.author diff --git a/config/locales/en_intro.yml b/config/locales/en_intro.yml index 518ba7d2c9..7a06f8c541 100644 --- a/config/locales/en_intro.yml +++ b/config/locales/en_intro.yml @@ -15,6 +15,7 @@ en: about_featured_scenarios: | Here you can find a list of featured scenarios published by other parties. Explore them or use them as a basis for your own scenario. + featured_by: "Developed by %{author}" features: title: Features whats_new: diff --git a/config/locales/nl_intro.yml b/config/locales/nl_intro.yml index 6fa3d43f79..c6910d831f 100644 --- a/config/locales/nl_intro.yml +++ b/config/locales/nl_intro.yml @@ -17,6 +17,7 @@ nl: about_featured_scenarios: | Hieronder vind je een lijst van uitgelichte scenario's gepubliceerd door verschillende partijen. Open ze en ga op onderzoek uit, of gebruik ze als basis voor je eigen scenario. + featured_by: "Gemaakt door %{author}" features: title: Features whats_new: diff --git a/spec/cassettes/PagesController/custom_year_values/does_not_have_custom_year_values_when_the_active_scenario_is_for_a_normal_year.yml b/spec/cassettes/PagesController/custom_year_values/does_not_have_custom_year_values_when_the_active_scenario_is_for_a_normal_year.yml index 674054b23e..5a516e5eec 100644 --- a/spec/cassettes/PagesController/custom_year_values/does_not_have_custom_year_values_when_the_active_scenario_is_for_a_normal_year.yml +++ b/spec/cassettes/PagesController/custom_year_values/does_not_have_custom_year_values_when_the_active_scenario_is_for_a_normal_year.yml @@ -48,7 +48,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:35:59 GMT - request: method: get diff --git a/spec/cassettes/PagesController/custom_year_values/has_custom_year_values_when_the_active_scenario_is_for_a_custom_year.yml b/spec/cassettes/PagesController/custom_year_values/has_custom_year_values_when_the_active_scenario_is_for_a_custom_year.yml index 3d5fe9a9e2..ae3d653ced 100644 --- a/spec/cassettes/PagesController/custom_year_values/has_custom_year_values_when_the_active_scenario_is_for_a_custom_year.yml +++ b/spec/cassettes/PagesController/custom_year_values/has_custom_year_values_when_the_active_scenario_is_for_a_custom_year.yml @@ -48,7 +48,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:35:59 GMT - request: method: get diff --git a/spec/cassettes/PagesController/when_visiting_as_a_guest/does_not_have_a_link_to_the_admin_section.yml b/spec/cassettes/PagesController/when_visiting_as_a_guest/does_not_have_a_link_to_the_admin_section.yml index a79ad236dd..65fd6fbfff 100644 --- a/spec/cassettes/PagesController/when_visiting_as_a_guest/does_not_have_a_link_to_the_admin_section.yml +++ b/spec/cassettes/PagesController/when_visiting_as_a_guest/does_not_have_a_link_to_the_admin_section.yml @@ -48,7 +48,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:35:59 GMT - request: method: get diff --git a/spec/cassettes/PagesController/when_visiting_as_an_admin/has_a_link_to_the_admin_section.yml b/spec/cassettes/PagesController/when_visiting_as_an_admin/has_a_link_to_the_admin_section.yml index f4c7e9f5df..d051e4f564 100644 --- a/spec/cassettes/PagesController/when_visiting_as_an_admin/has_a_link_to_the_admin_section.yml +++ b/spec/cassettes/PagesController/when_visiting_as_an_admin/has_a_link_to_the_admin_section.yml @@ -48,7 +48,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:36:00 GMT - request: method: get diff --git a/spec/cassettes/PagesController/with_an_IE11_user_agent_with_the_allow_unsupported_browser_param_set/renders_the_page.yml b/spec/cassettes/PagesController/with_an_IE11_user_agent_with_the_allow_unsupported_browser_param_set/renders_the_page.yml index 6a31a70d11..456a7601cf 100644 --- a/spec/cassettes/PagesController/with_an_IE11_user_agent_with_the_allow_unsupported_browser_param_set/renders_the_page.yml +++ b/spec/cassettes/PagesController/with_an_IE11_user_agent_with_the_allow_unsupported_browser_param_set/renders_the_page.yml @@ -48,7 +48,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:36:00 GMT - request: method: get diff --git a/spec/cassettes/PagesController/with_an_IE11_user_agent_with_the_allow_unsupported_browser_param_set/sets_the_allow_unsupported_browser_session_variable.yml b/spec/cassettes/PagesController/with_an_IE11_user_agent_with_the_allow_unsupported_browser_param_set/sets_the_allow_unsupported_browser_session_variable.yml index c943def0b9..d1f051cc2e 100644 --- a/spec/cassettes/PagesController/with_an_IE11_user_agent_with_the_allow_unsupported_browser_param_set/sets_the_allow_unsupported_browser_session_variable.yml +++ b/spec/cassettes/PagesController/with_an_IE11_user_agent_with_the_allow_unsupported_browser_param_set/sets_the_allow_unsupported_browser_session_variable.yml @@ -48,7 +48,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:36:00 GMT - request: method: get diff --git a/spec/cassettes/PagesController/with_the_preferred_language_de_/loads_in_the_EN_locale.yml b/spec/cassettes/PagesController/with_the_preferred_language_de_/loads_in_the_EN_locale.yml index 5bd986dbe7..be1b71781e 100644 --- a/spec/cassettes/PagesController/with_the_preferred_language_de_/loads_in_the_EN_locale.yml +++ b/spec/cassettes/PagesController/with_the_preferred_language_de_/loads_in_the_EN_locale.yml @@ -48,7 +48,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:36:00 GMT - request: method: get diff --git a/spec/cassettes/PagesController/with_the_preferred_language_en_/loads_in_the_EN_locale.yml b/spec/cassettes/PagesController/with_the_preferred_language_en_/loads_in_the_EN_locale.yml index 5bd4541fbb..44790f1507 100644 --- a/spec/cassettes/PagesController/with_the_preferred_language_en_/loads_in_the_EN_locale.yml +++ b/spec/cassettes/PagesController/with_the_preferred_language_en_/loads_in_the_EN_locale.yml @@ -48,7 +48,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:35:59 GMT - request: method: get diff --git a/spec/cassettes/PagesController/with_the_preferred_language_nl_/loads_in_the_NL_locale.yml b/spec/cassettes/PagesController/with_the_preferred_language_nl_/loads_in_the_NL_locale.yml index b096a2d635..4324b1fd0e 100644 --- a/spec/cassettes/PagesController/with_the_preferred_language_nl_/loads_in_the_NL_locale.yml +++ b/spec/cassettes/PagesController/with_the_preferred_language_nl_/loads_in_the_NL_locale.yml @@ -48,7 +48,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:36:00 GMT - request: method: get diff --git a/spec/cassettes/deleting_user/signs_out.yml b/spec/cassettes/deleting_user/signs_out.yml index 21152c9532..0d4eea3334 100644 --- a/spec/cassettes/deleting_user/signs_out.yml +++ b/spec/cassettes/deleting_user/signs_out.yml @@ -48,7 +48,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:36:01 GMT - request: method: get @@ -97,7 +97,7 @@ http_interactions: - '277' body: encoding: UTF-8 - string: '{"versions":[{"tag":"latest","model_url":"http://localhost:3001","engine_url":"http://localhost:3000","collections_url":"http://localhost:3005"},{"tag":"local","model_url":"http://localhost:3001","engine_url":"http://localhost:3000","collections_url":"http://localhost:3005"}]}' + string: '{"versions":[{"tag":"latest","model_url":"http://localhost:3001","engine_url":"http://localhost:3000","collections_url":"http://localhost:3005","study_en":"", "study_nl": ""},{"tag":"local","model_url":"http://localhost:3001","engine_url":"http://localhost:3000","collections_url":"http://localhost:3005"}]}' recorded_at: Fri, 28 Feb 2025 09:36:01 GMT - request: method: get @@ -147,7 +147,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:36:01 GMT - request: method: get @@ -246,7 +246,7 @@ http_interactions: body: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":1,"owner_id":1,"group":"national","title_en":"Scenario - for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS"}]}' + for testing","title_nl":"Scenario for testing","version":"latest","end_year":2050,"area_code":"nl2019","author":"LOUIS", "study_nl":"","study_en":""}]}' recorded_at: Fri, 28 Feb 2025 09:36:01 GMT - request: method: get @@ -295,7 +295,7 @@ http_interactions: - '277' body: encoding: UTF-8 - string: '{"versions":[{"tag":"latest","model_url":"http://localhost:3001","engine_url":"http://localhost:3000","collections_url":"http://localhost:3005"},{"tag":"local","model_url":"http://localhost:3001","engine_url":"http://localhost:3000","collections_url":"http://localhost:3005"}]}' + string: '{"versions":[{"tag":"latest","model_url":"http://localhost:3001","engine_url":"http://localhost:3000","collections_url":"http://localhost:3005","study_en":"", "study_nl": ""},{"tag":"local","model_url":"http://localhost:3001","engine_url":"http://localhost:3000","collections_url":"http://localhost:3005"}]}' recorded_at: Fri, 28 Feb 2025 09:36:01 GMT - request: method: get @@ -346,69 +346,69 @@ http_interactions: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":9436,"owner_id":5,"group":"national","title_en":"KEA - Draft Climate and Energy Agreement","title_nl":"KEA - Ontwerp Klimaat- en - energieakkoord","version":"latest","end_year":2030,"area_code":"nl","author":"Kalavasta"},{"id":3,"saved_scenario_id":10617,"owner_id":3,"group":"national","title_en":"Northern + energieakkoord","version":"latest","end_year":2030,"area_code":"nl","author":"Kalavasta", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":3,"saved_scenario_id":10617,"owner_id":3,"group":"national","title_en":"Northern Ireland - High Electrification 2050","title_nl":"Noord-Ierland - High Electrification 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":4,"saved_scenario_id":10644,"owner_id":3,"group":"national","title_en":"Northern + for the Economy", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":4,"saved_scenario_id":10644,"owner_id":3,"group":"national","title_en":"Northern Ireland - High Gasification 2050","title_nl":"Noord-Ierland - High Gasification 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":5,"saved_scenario_id":10645,"owner_id":3,"group":"national","title_en":"Northern + for the Economy", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":5,"saved_scenario_id":10645,"owner_id":3,"group":"national","title_en":"Northern Ireland - Diverse 2050","title_nl":"Noord-Ierland - Diverse 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":6,"saved_scenario_id":10648,"owner_id":3,"group":"national","title_en":"Northern + for the Economy", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":6,"saved_scenario_id":10648,"owner_id":3,"group":"national","title_en":"Northern Ireland - Business as Usual 2050","title_nl":"Noord-Ierland - Business as Usual 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":7,"saved_scenario_id":9184,"owner_id":1,"group":"national","title_en":"II3050 + for the Economy", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":7,"saved_scenario_id":9184,"owner_id":1,"group":"national","title_en":"II3050 - Regional governance","title_nl":"II3050 - Regionale sturing ","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":8,"saved_scenario_id":9186,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":8,"saved_scenario_id":9186,"owner_id":1,"group":"national","title_en":"II3050 - Europese CO2 governance","title_nl":"II3050 - Europese sturing ","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":9,"saved_scenario_id":9187,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":9,"saved_scenario_id":9187,"owner_id":1,"group":"national","title_en":"II3050 - International governance","title_nl":"II3050 - Internationale sturing","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":10,"saved_scenario_id":9185,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":10,"saved_scenario_id":9185,"owner_id":1,"group":"national","title_en":"II3050 - National governance","title_nl":"II3050 - Nationale sturing ","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":11,"saved_scenario_id":12532,"owner_id":2,"group":"national","title_en":"KEV + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":11,"saved_scenario_id":12532,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2021","title_nl":"KEV - Klimaat- en Energieverkenning - 2021","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel"},{"id":12,"saved_scenario_id":12690,"owner_id":4,"group":"national","title_en":"100% - Sustainable Energy in 2030","title_nl":"100% Duurzame Energie in 2030","version":"latest","end_year":2030,"area_code":"nl2019","author":"Urgenda"},{"id":13,"saved_scenario_id":14388,"owner_id":1,"group":"national","title_en":"IP2024 + 2021","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":12,"saved_scenario_id":12690,"owner_id":4,"group":"national","title_en":"100% + Sustainable Energy in 2030","title_nl":"100% Duurzame Energie in 2030","version":"latest","end_year":2030,"area_code":"nl2019","author":"Urgenda", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":13,"saved_scenario_id":14388,"owner_id":1,"group":"national","title_en":"IP2024 - National Drivers","title_nl":"IP2024 - Nationale Drijfveren","version":"latest","end_year":2025,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":14,"saved_scenario_id":14382,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":14,"saved_scenario_id":14382,"owner_id":1,"group":"national","title_en":"IP2024 - Climate Ambition","title_nl":"IP2024 - Klimaatambitie","version":"latest","end_year":2025,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":15,"saved_scenario_id":14391,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":15,"saved_scenario_id":14391,"owner_id":1,"group":"national","title_en":"IP2024 - International Ambition","title_nl":"IP2024 - Internationale Ambitie","version":"latest","end_year":2025,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":16,"saved_scenario_id":14386,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":16,"saved_scenario_id":14386,"owner_id":1,"group":"national","title_en":"IP2024 - Climate Ambition","title_nl":"IP2024 - Klimaatambitie","version":"latest","end_year":2030,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":17,"saved_scenario_id":14389,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":17,"saved_scenario_id":14389,"owner_id":1,"group":"national","title_en":"IP2024 - National Drivers","title_nl":"IP2024 - Nationale Drijfveren","version":"latest","end_year":2030,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":18,"saved_scenario_id":14392,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":18,"saved_scenario_id":14392,"owner_id":1,"group":"national","title_en":"IP2024 - International Ambition","title_nl":"IP2024 - Internationale Ambitie","version":"latest","end_year":2030,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":19,"saved_scenario_id":14387,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":19,"saved_scenario_id":14387,"owner_id":1,"group":"national","title_en":"IP2024 - Climate Ambition","title_nl":"IP2024 - Klimaatambitie","version":"latest","end_year":2035,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":20,"saved_scenario_id":14390,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":20,"saved_scenario_id":14390,"owner_id":1,"group":"national","title_en":"IP2024 - National Drivers","title_nl":"IP2024 - Nationale Drijfveren","version":"latest","end_year":2035,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":21,"saved_scenario_id":14393,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":21,"saved_scenario_id":14393,"owner_id":1,"group":"national","title_en":"IP2024 - International Ambition","title_nl":"IP2024 - Internationale Ambitie","version":"latest","end_year":2035,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":22,"saved_scenario_id":14548,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":22,"saved_scenario_id":14548,"owner_id":1,"group":"national","title_en":"II3050 v2 - Decentral Initiatives","title_nl":"II3050 v2 - Decentrale Initiatieven","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":23,"saved_scenario_id":14549,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":23,"saved_scenario_id":14549,"owner_id":1,"group":"national","title_en":"II3050 v2 - National Leadership","title_nl":"II3050 v2 - Nationaal Leiderschap","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":24,"saved_scenario_id":14550,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":24,"saved_scenario_id":14550,"owner_id":1,"group":"national","title_en":"II3050 v2 - European Integration","title_nl":"II3050 v2 - Europese Integratie","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":25,"saved_scenario_id":14551,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":25,"saved_scenario_id":14551,"owner_id":1,"group":"national","title_en":"II3050 v2 - International Trade","title_nl":"II3050 v2 - Internationale Handel","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":26,"saved_scenario_id":14552,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":26,"saved_scenario_id":14552,"owner_id":1,"group":"national","title_en":"II3050 v2 - Decentral Initiatives","title_nl":"II3050 v2 - Decentrale Initiatieven","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":27,"saved_scenario_id":14553,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":27,"saved_scenario_id":14553,"owner_id":1,"group":"national","title_en":"II3050 v2 - National Leadership","title_nl":"II3050 v2 - Nationaal Leiderschap","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":28,"saved_scenario_id":14554,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":28,"saved_scenario_id":14554,"owner_id":1,"group":"national","title_en":"II3050 v2 - European Integration","title_nl":"II3050 v2 - Europese Integratie","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":29,"saved_scenario_id":14555,"owner_id":1,"group":"national","title_en":"II3050 + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":29,"saved_scenario_id":14555,"owner_id":1,"group":"national","title_en":"II3050 v2 - International Trade","title_nl":"II3050 v2 - Internationale Handel","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":30,"saved_scenario_id":15969,"owner_id":2,"group":"national","title_en":"KEV + Nederland", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":30,"saved_scenario_id":15969,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2022","title_nl":"KEV - Klimaat- en Energieverkenning - 2022","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel"},{"id":33,"saved_scenario_id":18836,"owner_id":2,"group":"national","title_en":"KEV + 2022","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":33,"saved_scenario_id":18836,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2024","title_nl":"KEV - Klimaat- en Energieverkenning - 2024","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel"},{"id":34,"saved_scenario_id":19310,"owner_id":2,"group":"national","title_en":"KEV + 2024","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel", "study_en":"", "study_nl": "","study_en":"", "study_nl": ""},{"id":34,"saved_scenario_id":19310,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2024","title_nl":"KEV - Klimaat- en Energieverkenning - 2024","version":"latest","end_year":2035,"area_code":"nl2019","author":"Quintel"}]}' + 2024","version":"latest","end_year":2035,"area_code":"nl2019","author":"Quintel", "study_en":"", "study_nl": ""}]}' recorded_at: Fri, 04 Apr 2025 09:59:50 GMT - request: method: get @@ -459,69 +459,69 @@ http_interactions: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":9436,"owner_id":5,"group":"national","title_en":"KEA - Draft Climate and Energy Agreement","title_nl":"KEA - Ontwerp Klimaat- en - energieakkoord","version":"latest","end_year":2030,"area_code":"nl","author":"Kalavasta"},{"id":3,"saved_scenario_id":10617,"owner_id":3,"group":"national","title_en":"Northern + energieakkoord","version":"latest","end_year":2030,"area_code":"nl","author":"Kalavasta","study_en":"", "study_nl": ""},{"id":3,"saved_scenario_id":10617,"owner_id":3,"group":"national","title_en":"Northern Ireland - High Electrification 2050","title_nl":"Noord-Ierland - High Electrification 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":4,"saved_scenario_id":10644,"owner_id":3,"group":"national","title_en":"Northern + for the Economy","study_en":"", "study_nl": ""},{"id":4,"saved_scenario_id":10644,"owner_id":3,"group":"national","title_en":"Northern Ireland - High Gasification 2050","title_nl":"Noord-Ierland - High Gasification 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":5,"saved_scenario_id":10645,"owner_id":3,"group":"national","title_en":"Northern + for the Economy","study_en":"", "study_nl": ""},{"id":5,"saved_scenario_id":10645,"owner_id":3,"group":"national","title_en":"Northern Ireland - Diverse 2050","title_nl":"Noord-Ierland - Diverse 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":6,"saved_scenario_id":10648,"owner_id":3,"group":"national","title_en":"Northern + for the Economy","study_en":"", "study_nl": ""},{"id":6,"saved_scenario_id":10648,"owner_id":3,"group":"national","title_en":"Northern Ireland - Business as Usual 2050","title_nl":"Noord-Ierland - Business as Usual 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":7,"saved_scenario_id":9184,"owner_id":1,"group":"national","title_en":"II3050 + for the Economy","study_en":"", "study_nl": ""},{"id":7,"saved_scenario_id":9184,"owner_id":1,"group":"national","title_en":"II3050 - Regional governance","title_nl":"II3050 - Regionale sturing ","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":8,"saved_scenario_id":9186,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":8,"saved_scenario_id":9186,"owner_id":1,"group":"national","title_en":"II3050 - Europese CO2 governance","title_nl":"II3050 - Europese sturing ","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":9,"saved_scenario_id":9187,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":9,"saved_scenario_id":9187,"owner_id":1,"group":"national","title_en":"II3050 - International governance","title_nl":"II3050 - Internationale sturing","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":10,"saved_scenario_id":9185,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":10,"saved_scenario_id":9185,"owner_id":1,"group":"national","title_en":"II3050 - National governance","title_nl":"II3050 - Nationale sturing ","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":11,"saved_scenario_id":12532,"owner_id":2,"group":"national","title_en":"KEV + Nederland","study_en":"", "study_nl": ""},{"id":11,"saved_scenario_id":12532,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2021","title_nl":"KEV - Klimaat- en Energieverkenning - 2021","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel"},{"id":12,"saved_scenario_id":12690,"owner_id":4,"group":"national","title_en":"100% - Sustainable Energy in 2030","title_nl":"100% Duurzame Energie in 2030","version":"latest","end_year":2030,"area_code":"nl2019","author":"Urgenda"},{"id":13,"saved_scenario_id":14388,"owner_id":1,"group":"national","title_en":"IP2024 + 2021","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel","study_en":"", "study_nl": ""},{"id":12,"saved_scenario_id":12690,"owner_id":4,"group":"national","title_en":"100% + Sustainable Energy in 2030","title_nl":"100% Duurzame Energie in 2030","version":"latest","end_year":2030,"area_code":"nl2019","author":"Urgenda","study_en":"", "study_nl": ""},{"id":13,"saved_scenario_id":14388,"owner_id":1,"group":"national","title_en":"IP2024 - National Drivers","title_nl":"IP2024 - Nationale Drijfveren","version":"latest","end_year":2025,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":14,"saved_scenario_id":14382,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":14,"saved_scenario_id":14382,"owner_id":1,"group":"national","title_en":"IP2024 - Climate Ambition","title_nl":"IP2024 - Klimaatambitie","version":"latest","end_year":2025,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":15,"saved_scenario_id":14391,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":15,"saved_scenario_id":14391,"owner_id":1,"group":"national","title_en":"IP2024 - International Ambition","title_nl":"IP2024 - Internationale Ambitie","version":"latest","end_year":2025,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":16,"saved_scenario_id":14386,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":16,"saved_scenario_id":14386,"owner_id":1,"group":"national","title_en":"IP2024 - Climate Ambition","title_nl":"IP2024 - Klimaatambitie","version":"latest","end_year":2030,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":17,"saved_scenario_id":14389,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":17,"saved_scenario_id":14389,"owner_id":1,"group":"national","title_en":"IP2024 - National Drivers","title_nl":"IP2024 - Nationale Drijfveren","version":"latest","end_year":2030,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":18,"saved_scenario_id":14392,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":18,"saved_scenario_id":14392,"owner_id":1,"group":"national","title_en":"IP2024 - International Ambition","title_nl":"IP2024 - Internationale Ambitie","version":"latest","end_year":2030,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":19,"saved_scenario_id":14387,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":19,"saved_scenario_id":14387,"owner_id":1,"group":"national","title_en":"IP2024 - Climate Ambition","title_nl":"IP2024 - Klimaatambitie","version":"latest","end_year":2035,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":20,"saved_scenario_id":14390,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":20,"saved_scenario_id":14390,"owner_id":1,"group":"national","title_en":"IP2024 - National Drivers","title_nl":"IP2024 - Nationale Drijfveren","version":"latest","end_year":2035,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":21,"saved_scenario_id":14393,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":21,"saved_scenario_id":14393,"owner_id":1,"group":"national","title_en":"IP2024 - International Ambition","title_nl":"IP2024 - Internationale Ambitie","version":"latest","end_year":2035,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":22,"saved_scenario_id":14548,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":22,"saved_scenario_id":14548,"owner_id":1,"group":"national","title_en":"II3050 v2 - Decentral Initiatives","title_nl":"II3050 v2 - Decentrale Initiatieven","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":23,"saved_scenario_id":14549,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":23,"saved_scenario_id":14549,"owner_id":1,"group":"national","title_en":"II3050 v2 - National Leadership","title_nl":"II3050 v2 - Nationaal Leiderschap","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":24,"saved_scenario_id":14550,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":24,"saved_scenario_id":14550,"owner_id":1,"group":"national","title_en":"II3050 v2 - European Integration","title_nl":"II3050 v2 - Europese Integratie","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":25,"saved_scenario_id":14551,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":25,"saved_scenario_id":14551,"owner_id":1,"group":"national","title_en":"II3050 v2 - International Trade","title_nl":"II3050 v2 - Internationale Handel","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":26,"saved_scenario_id":14552,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":26,"saved_scenario_id":14552,"owner_id":1,"group":"national","title_en":"II3050 v2 - Decentral Initiatives","title_nl":"II3050 v2 - Decentrale Initiatieven","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":27,"saved_scenario_id":14553,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":27,"saved_scenario_id":14553,"owner_id":1,"group":"national","title_en":"II3050 v2 - National Leadership","title_nl":"II3050 v2 - Nationaal Leiderschap","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":28,"saved_scenario_id":14554,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":28,"saved_scenario_id":14554,"owner_id":1,"group":"national","title_en":"II3050 v2 - European Integration","title_nl":"II3050 v2 - Europese Integratie","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":29,"saved_scenario_id":14555,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":29,"saved_scenario_id":14555,"owner_id":1,"group":"national","title_en":"II3050 v2 - International Trade","title_nl":"II3050 v2 - Internationale Handel","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":30,"saved_scenario_id":15969,"owner_id":2,"group":"national","title_en":"KEV + Nederland","study_en":"", "study_nl": ""},{"id":30,"saved_scenario_id":15969,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2022","title_nl":"KEV - Klimaat- en Energieverkenning - 2022","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel"},{"id":33,"saved_scenario_id":18836,"owner_id":2,"group":"national","title_en":"KEV + 2022","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel","study_en":"", "study_nl": ""},{"id":33,"saved_scenario_id":18836,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2024","title_nl":"KEV - Klimaat- en Energieverkenning - 2024","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel"},{"id":34,"saved_scenario_id":19310,"owner_id":2,"group":"national","title_en":"KEV + 2024","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel","study_en":"", "study_nl": ""},{"id":34,"saved_scenario_id":19310,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2024","title_nl":"KEV - Klimaat- en Energieverkenning - 2024","version":"latest","end_year":2035,"area_code":"nl2019","author":"Quintel"}]}' + 2024","version":"latest","end_year":2035,"area_code":"nl2019","author":"Quintel", "study_en":"", "study_nl": ""}]}' recorded_at: Fri, 04 Apr 2025 09:59:51 GMT - request: method: get @@ -572,68 +572,68 @@ http_interactions: encoding: UTF-8 string: '{"featured_scenarios":[{"id":2,"saved_scenario_id":9436,"owner_id":5,"group":"national","title_en":"KEA - Draft Climate and Energy Agreement","title_nl":"KEA - Ontwerp Klimaat- en - energieakkoord","version":"latest","end_year":2030,"area_code":"nl","author":"Kalavasta"},{"id":3,"saved_scenario_id":10617,"owner_id":3,"group":"national","title_en":"Northern + energieakkoord","version":"latest","end_year":2030,"area_code":"nl","author":"Kalavasta","study_en":"", "study_nl": ""},{"id":3,"saved_scenario_id":10617,"owner_id":3,"group":"national","title_en":"Northern Ireland - High Electrification 2050","title_nl":"Noord-Ierland - High Electrification 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":4,"saved_scenario_id":10644,"owner_id":3,"group":"national","title_en":"Northern + for the Economy","study_en":"", "study_nl": ""},{"id":4,"saved_scenario_id":10644,"owner_id":3,"group":"national","title_en":"Northern Ireland - High Gasification 2050","title_nl":"Noord-Ierland - High Gasification 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":5,"saved_scenario_id":10645,"owner_id":3,"group":"national","title_en":"Northern + for the Economy","study_en":"", "study_nl": ""},{"id":5,"saved_scenario_id":10645,"owner_id":3,"group":"national","title_en":"Northern Ireland - Diverse 2050","title_nl":"Noord-Ierland - Diverse 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":6,"saved_scenario_id":10648,"owner_id":3,"group":"national","title_en":"Northern + for the Economy","study_en":"", "study_nl": ""},{"id":6,"saved_scenario_id":10648,"owner_id":3,"group":"national","title_en":"Northern Ireland - Business as Usual 2050","title_nl":"Noord-Ierland - Business as Usual 2050","version":"latest","end_year":2050,"area_code":"UKNI01_northern_ireland","author":"Department - for the Economy"},{"id":7,"saved_scenario_id":9184,"owner_id":1,"group":"national","title_en":"II3050 + for the Economy","study_en":"", "study_nl": ""},{"id":7,"saved_scenario_id":9184,"owner_id":1,"group":"national","title_en":"II3050 - Regional governance","title_nl":"II3050 - Regionale sturing ","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":8,"saved_scenario_id":9186,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":8,"saved_scenario_id":9186,"owner_id":1,"group":"national","title_en":"II3050 - Europese CO2 governance","title_nl":"II3050 - Europese sturing ","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":9,"saved_scenario_id":9187,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":9,"saved_scenario_id":9187,"owner_id":1,"group":"national","title_en":"II3050 - International governance","title_nl":"II3050 - Internationale sturing","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":10,"saved_scenario_id":9185,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":10,"saved_scenario_id":9185,"owner_id":1,"group":"national","title_en":"II3050 - National governance","title_nl":"II3050 - Nationale sturing ","version":"latest","end_year":2050,"area_code":"nl","author":"Netbeheer - Nederland"},{"id":11,"saved_scenario_id":12532,"owner_id":2,"group":"national","title_en":"KEV + Nederland","study_en":"", "study_nl": ""},{"id":11,"saved_scenario_id":12532,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2021","title_nl":"KEV - Klimaat- en Energieverkenning - 2021","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel"},{"id":12,"saved_scenario_id":12690,"owner_id":4,"group":"national","title_en":"100% - Sustainable Energy in 2030","title_nl":"100% Duurzame Energie in 2030","version":"latest","end_year":2030,"area_code":"nl2019","author":"Urgenda"},{"id":13,"saved_scenario_id":14388,"owner_id":1,"group":"national","title_en":"IP2024 + 2021","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel","study_en":"", "study_nl": ""},{"id":12,"saved_scenario_id":12690,"owner_id":4,"group":"national","title_en":"100% + Sustainable Energy in 2030","title_nl":"100% Duurzame Energie in 2030","version":"latest","end_year":2030,"area_code":"nl2019","author":"Urgenda","study_en":"", "study_nl": ""},{"id":13,"saved_scenario_id":14388,"owner_id":1,"group":"national","title_en":"IP2024 - National Drivers","title_nl":"IP2024 - Nationale Drijfveren","version":"latest","end_year":2025,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":14,"saved_scenario_id":14382,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":14,"saved_scenario_id":14382,"owner_id":1,"group":"national","title_en":"IP2024 - Climate Ambition","title_nl":"IP2024 - Klimaatambitie","version":"latest","end_year":2025,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":15,"saved_scenario_id":14391,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":15,"saved_scenario_id":14391,"owner_id":1,"group":"national","title_en":"IP2024 - International Ambition","title_nl":"IP2024 - Internationale Ambitie","version":"latest","end_year":2025,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":16,"saved_scenario_id":14386,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":16,"saved_scenario_id":14386,"owner_id":1,"group":"national","title_en":"IP2024 - Climate Ambition","title_nl":"IP2024 - Klimaatambitie","version":"latest","end_year":2030,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":17,"saved_scenario_id":14389,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":17,"saved_scenario_id":14389,"owner_id":1,"group":"national","title_en":"IP2024 - National Drivers","title_nl":"IP2024 - Nationale Drijfveren","version":"latest","end_year":2030,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":18,"saved_scenario_id":14392,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":18,"saved_scenario_id":14392,"owner_id":1,"group":"national","title_en":"IP2024 - International Ambition","title_nl":"IP2024 - Internationale Ambitie","version":"latest","end_year":2030,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":19,"saved_scenario_id":14387,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":19,"saved_scenario_id":14387,"owner_id":1,"group":"national","title_en":"IP2024 - Climate Ambition","title_nl":"IP2024 - Klimaatambitie","version":"latest","end_year":2035,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":20,"saved_scenario_id":14390,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":20,"saved_scenario_id":14390,"owner_id":1,"group":"national","title_en":"IP2024 - National Drivers","title_nl":"IP2024 - Nationale Drijfveren","version":"latest","end_year":2035,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":21,"saved_scenario_id":14393,"owner_id":1,"group":"national","title_en":"IP2024 + Nederland","study_en":"", "study_nl": ""},{"id":21,"saved_scenario_id":14393,"owner_id":1,"group":"national","title_en":"IP2024 - International Ambition","title_nl":"IP2024 - Internationale Ambitie","version":"latest","end_year":2035,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":22,"saved_scenario_id":14548,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":22,"saved_scenario_id":14548,"owner_id":1,"group":"national","title_en":"II3050 v2 - Decentral Initiatives","title_nl":"II3050 v2 - Decentrale Initiatieven","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":23,"saved_scenario_id":14549,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":23,"saved_scenario_id":14549,"owner_id":1,"group":"national","title_en":"II3050 v2 - National Leadership","title_nl":"II3050 v2 - Nationaal Leiderschap","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":24,"saved_scenario_id":14550,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":24,"saved_scenario_id":14550,"owner_id":1,"group":"national","title_en":"II3050 v2 - European Integration","title_nl":"II3050 v2 - Europese Integratie","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":25,"saved_scenario_id":14551,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":25,"saved_scenario_id":14551,"owner_id":1,"group":"national","title_en":"II3050 v2 - International Trade","title_nl":"II3050 v2 - Internationale Handel","version":"latest","end_year":2040,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":26,"saved_scenario_id":14552,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":26,"saved_scenario_id":14552,"owner_id":1,"group":"national","title_en":"II3050 v2 - Decentral Initiatives","title_nl":"II3050 v2 - Decentrale Initiatieven","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":27,"saved_scenario_id":14553,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":27,"saved_scenario_id":14553,"owner_id":1,"group":"national","title_en":"II3050 v2 - National Leadership","title_nl":"II3050 v2 - Nationaal Leiderschap","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":28,"saved_scenario_id":14554,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":28,"saved_scenario_id":14554,"owner_id":1,"group":"national","title_en":"II3050 v2 - European Integration","title_nl":"II3050 v2 - Europese Integratie","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":29,"saved_scenario_id":14555,"owner_id":1,"group":"national","title_en":"II3050 + Nederland","study_en":"", "study_nl": ""},{"id":29,"saved_scenario_id":14555,"owner_id":1,"group":"national","title_en":"II3050 v2 - International Trade","title_nl":"II3050 v2 - Internationale Handel","version":"latest","end_year":2050,"area_code":"nl2019","author":"Netbeheer - Nederland"},{"id":30,"saved_scenario_id":15969,"owner_id":2,"group":"national","title_en":"KEV + Nederland","study_en":"", "study_nl": ""},{"id":30,"saved_scenario_id":15969,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2022","title_nl":"KEV - Klimaat- en Energieverkenning - 2022","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel"},{"id":33,"saved_scenario_id":18836,"owner_id":2,"group":"national","title_en":"KEV + 2022","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel","study_en":"", "study_nl": ""},{"id":33,"saved_scenario_id":18836,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2024","title_nl":"KEV - Klimaat- en Energieverkenning - 2024","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel"},{"id":34,"saved_scenario_id":19310,"owner_id":2,"group":"national","title_en":"KEV + 2024","version":"latest","end_year":2030,"area_code":"nl2019","author":"Quintel","study_en":"", "study_nl": ""},{"id":34,"saved_scenario_id":19310,"owner_id":2,"group":"national","title_en":"KEV - Climate and Energy Outlook 2024","title_nl":"KEV - Klimaat- en Energieverkenning - 2024","version":"latest","end_year":2035,"area_code":"nl2019","author":"Quintel"}]}' + 2024","version":"latest","end_year":2035,"area_code":"nl2019","author":"Quintel", "study_en":"", "study_nl": ""}]}' recorded_at: Fri, 04 Apr 2025 09:59:52 GMT recorded_with: VCR 6.0.0