Skip to content

Instantly share code, notes, and snippets.

@kru
Created March 14, 2019 04:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kru/674bb52708ad6384e30a5eb862b64537 to your computer and use it in GitHub Desktop.
Save kru/674bb52708ad6384e30a5eb862b64537 to your computer and use it in GitHub Desktop.
/**
* policyCategory: this is either
* 0: General,
* 1: Land & Agriculture,
* 3: Energy
* 4: IPPU & Waste
* 5: Water and Fisheries
*/
const POLICY_CATEGORY = {
GENERAL: 0,
LAND_AGRICULTURE: 1,
ENERGY: 2,
IPPU_WASTE: 3,
WATER_FISHERIES: 4
};
/**
* parameterType: this is either
* 0: Dropdown Menu
* 1: Slider
*/
const PARAMETER_TYPE = {
DROPDOWN_MENU: 0,
SLIDER: 1
};
/**
* @paramPresetValue
*
* Preset value represents specific value which indicates specific scenario.
* i.e. if you want to move the slider into a certain value which corresponds to Fair Scenario,
* you must slide the slider until you reach value 10000
*/
const policies = [
{
policyName: "Energy Efficiency Scenario",
policyCategory: POLICY_CATEGORY.ENERGY,
policyActivities: [
{
activityName: "Implemented Increase in Energy Efficiency during period 2020-2030 and post 2030",
activityDesc: "Implemented Increase in Energy Efficiency during period 2020-2030 and post 2030",
activityTranslation: "",
activityParameters: [
{
paramName: "EE RPJMN POLICY SWITCH",
paramTitle: "Energy Efficiency RPJMN Policy Switch",
paramDefinition: "Energy Efficiency RPJMN Policy Switch",
paramUnit: "",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramDefaultValue: 0,
paramValues: [
{
title: "Baseline",
value: 0,
description: "No Change."
},
{
title: "Fair",
value: 1,
description: "Increase energy efficiency 2.5%/year (2019), 2.75% p.a (2020-2030), 3.5% p.a (post 2030)"
},
{
title: "Ambisius",
value: 2,
description: "Increase energy efficiency 3.5% p.a (2020-2030), 4.5% p.a (post 2030)"
}
]
}
]
}
]
},
{
policyName: "Packaging Scenario in Land, Waste, and IPPU",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Peat Restoration with target during period 2018-2024 and post 2024",
activityDesc: "Peat Restoration with target during period 2018-2024 and post 2024",
activityTranslation: "Peat Restoration with target during period 2018-2024 and post 2024",
activityParameters: [
{
paramName: "Expected Other Land to Forest Land by Peat Policy 1",
paramTitle: "Expected Other Land to Forest Land by Peat Policy 1",
paramDefinition: "Target during 2018-2024",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "Ha",
paramDefaultValue: 0,
paramMinValue: 0,
paramMaxValue: 300000,
paramIntervalValue: 1,
paramPresetValue: [
{
title: "Baseline",
value: 300000
},
{
title: "Fair",
value: 300000
},
{
title: "Ambisius",
value: 300000
}
]
},
{
paramName: "Expected Other Land to Forest Land by Peat Policy 2",
paramTitle: "Expected Other Land to Forest Land by Peat Policy 2",
paramDefinition: "Target post 2024",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "Ha",
paramDefaultValue: 0,
paramMinValue: 0,
paramMaxValue: 100000,
paramIntervalValue: 1,
paramPresetValue: [
{
title: "Baseline",
value: 100000
},
{
title: "Fair",
value: 100000
},
{
title: "Ambisius",
value: 100000
}
]
}
]
},
{
activityName: "Reforestation programmes with target during period 2018-2024 and post 2024",
activityDesc: "Reforestation programmes with target during period 2018-2024 and post 2024",
activityTranslation: "",
activityParameters: [
{
paramName: "Expected Other Land to Forest Land by Peat Policy 1",
paramTitle: "Expected Other Land to Forest Land by Peat Policy 1",
paramDefinition: "Target during 2018-2024",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "Ha",
paramDefaultValue: 0,
paramMinValue: 0,
paramMaxValue: 500000,
paramIntervalValue: 1,
paramPresetValue: [
{
title: "Baseline",
value: 500000
},
{
title: "Fair",
value: 500000
},
{
title: "Ambisius",
value: 1000000
}
]
},
{
paramName: "Expected Other Land to Forest Land by Peat Policy 2",
paramTitle: "Expected Other Land to Forest Land by Peat Policy 2",
paramDefinition: "Target post 2024",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "Ha",
paramDefaultValue: 0,
paramMinValue: 0,
paramMaxValue: 1000000,
paramIntervalValue: 1,
paramPresetValue: [
{
title: "Baseline",
value: 500000
},
{
title: "Fair",
value: 500000
},
{
title: "Ambisius",
value: 1000000
}
]
}
]
},
{
activityName: "Solid Waste Reduction with implementation in 2016 and achieve the target in 2025",
activityDesc: "Solid Waste Reduction with implementation in 2016 and achieve the target in 2025",
activityTranslation: "",
activityParameters: [
{
paramName: "Solid Waste Generated Per Capita Reduction",
paramTitle: "Solid Waste Generated Per Capita Reduction",
paramDefinition: "Percentage of reduction In solid waste generation",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "Ha",
paramDefaultValue: 0,
paramMinValue: 0,
paramMaxValue: 100,
paramIntervalValue: 1,
paramPresetValue: [
{
title: "Baseline",
value: 30
},
{
title: "Fair",
value: 30
},
{
title: "Ambisius",
value: 30
}
]
}
]
},
{
activityName: "Solid Waste Proccesing with implementation in 2016 and achieve the target in 2025 that will reduce emission factor by 10%",
activityDesc: "Solid Waste Proccesing with implementation in 2016 and achieve the target in 2025 that will reduce emission factor by 10%",
activityTranslation: "",
activityParameters: [
{
paramName: "Solid Waste Generated Per Capita Processing",
paramTitle: "Solid Waste Generated Per Capita Processing",
paramDefinition: "Percentage of reduction in waste emission factor",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "%",
paramDefaultValue: 0,
paramMinValue: 0,
paramMaxValue: 100,
paramIntervalValue: 1,
paramPresetValue: [
{
title: "Baseline",
value: 10
},
{
title: "Fair",
value: 10
},
{
title: "Ambisius",
value: 10
}
]
}
]
},
{
activityName: "Implementation of Waste Water Management in Industrial implemented in 2019 and achieve at 2045 that will reduce emission factor of Waste water industrial by 50%",
activityDesc: "Implementation of Waste Water Management in Industrial implemented in 2019 and achieve at 2045 that will reduce emission factor of Waste water industrial by 50%",
activityTranslation: "",
activityParameters: [
{
paramName: "EF Industrial WW per VA Reduction Target",
paramTitle: "EF Industrial WW per VA Reduction Target",
paramDefinition: "",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "%",
paramDefaultValue: 0,
paramMinValue: 0,
paramMaxValue: 100,
paramIntervalValue: 1,
paramPresetValue: [
{
title: "Baseline",
value: 50
},
{
title: "Fair",
value: 50
},
{
title: "Ambisius",
value: 50
}
]
}
]
},
{
activityName: "Implementation of IPPU Management implemented in 2019 and achieve at 2045 that will reduce emission factor of Waste water industrial by 50%",
activityDesc: "Implementation of IPPU Management implemented in 2019 and achieve at 2045 that will reduce emission factor of Waste water industrial by 50%",
activityTranslation: "",
activityParameters: [
{
paramName: "EF IPPU per VA Reduction Target",
paramTitle: "EF IPPU per VA Reduction Target",
paramDefinition: "Percentage of reduction in waste waster industrial emission factor",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "%",
paramDefaultValue: 0,
paramMinValue: 0,
paramMaxValue: 100,
paramIntervalValue: 1,
paramPresetValue: [
{
title: "Baseline",
value: 50
},
{
title: "Fair",
value: 50
},
{
title: "Ambisius",
value: 50
}
]
}
]
}
]
},
{
policyName: "Packaging Scenarios in Fisheries",
policyCategory: POLICY_CATEGORY.WATER_FISHERIES,
policyActivities: [
{
activityName: "Packaging Scenarios in Fisheries",
activityDesc: "Implementation of Policies Package in Fisheries, repectively: " +
"(1) National Fisheries Data Platform, " +
"(2) Fishery Management Areas (FMA), " +
"(3) Capacity building activities aiming at facilitating behavioral changes, " +
"(4) LPG as Alternative Energy for Fishing Boats, " +
"(5) Solar Panel for Shrimp Farms, " +
"(6) Fish carrier ships are deployed to reduce the operational costs of small fishers, " +
"(7) Improved Monitoring on Live Fish Carriers, " +
"(8) Supporting facilities for aquaculture estates, " +
"(9) Silvio fisheries in aquaculture, " +
"(10) Seaweed expansion.",
activityTranslation: "Packaging Scenarios in Fisheries",
activityParameters: [
{
paramName: "FISHERIES ALL POLICIES SWITCH",
paramTitle: "Fisheries All Policies Switch",
paramDefinition: "Enable Fisheries Policy Package",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramDefaultValue: 0,
paramValues: [
{
title: "Baseline",
value: 0
},
{
title: "Fair & Ambisius",
value: 1
},
]
}
]
}
]
},
{
policyName: "Packaging Scenarios in Forestry and Oil Palm",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Packaging Scenarios in Forestry and Oil Palm",
activityDesc: "Packaging Scenarios in Forestry and Oil Palm, respectively: " +
"(1) Certification Oil Palm Area (ISPO and RSPO), that will increase share land of ISPO and RSPO up to 50% at 2030 and increase 11% productivity on those land, " +
"(2) Implementation of Reduced Impact Logging (RIL), that will increase share land of RIL up to 50% at 2025 and increase value added from RIL land 500,000 Rp/m3 production, " +
"(3) Implementation of Sustainable Forest Plantation, that will increase share land of sust forest plantation up to 50% at 2025 and reduce average emission factor by 5%.",
activityParameters: [
{
paramName: "FORESTRY & OIL PALM ALL POLICIES SWITCHES",
paramTitle: "Forestry & Oil Palm Policies Switch",
paramDefinition: "",
paramUnit: "",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramDefaultValue: 0,
paramValues: [
{
title: "Baseline",
value: 0
},
{
title: "Fair & Ambisius",
value: 1
}
]
}
]
}
]
},
{
policyName: "Packaging Scenario related to Table Function in the model",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Packaging Scenario related to Table Function in the model",
activityDesc: "Packaging Scenarios in several sector respectively, respectively: " +
"(1) Control/Reduce Deforestation from Degraded primary forest to secondary forest from 1% p.a (Baseline) to 0.02% p.a (Fair and Ambitious scenario), " +
"(2) Control/Reduce Deforestation from secondary forest to plantation forest from 0.15% p.a (Baseline) to 0.03% p.a (Fair and Ambitious scenario), " +
"(3) Increase Sustainbale Practices in Agriculture, which increase share of sustainable agriculture from 0% (Baseline) to 50% (Fair and Ambitious scenario) achieve at 2045 and start from 2019, " +
"(4) Reduce Subsidy for Oil Fuel by 0% by 2030 and start from 2025, " +
"(5) Implementation subtitution of petroleum demand by biofuel up to 14% (Fair) or 30% (Ambitious).",
activityTranslation: "",
activityParameters: [
{
paramName: "GRAPH FUNCTION POLICY SWITCH",
paramTitle: "Graph Function Policy Switch",
paramDefinition: "",
paramUnit: "Ha",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramDefaultValue: 0,
paramValues: [
{
title: "Baseline",
value: 0
},
{
title: "Fair",
value: 1
},
{
title: "Ambisius",
value: 2
}
]
}
]
}
]
},
{
policyName: "Renewable Share in Power Plant Implementation",
policyCategory: POLICY_CATEGORY.ENERGY,
policyActivities: [
{
activityName: "Renewable Share in Power Plant Implementation",
activityDesc: "Increase development of Renewable Power Plant to reach 13% share at 2030 (Fair) or 23% (Ambitious)",
activityTranslation: "Increase development of Renewable Power Plant to reach 13% share at 2030 (Fair) or 23% (Ambitious)",
activityParameters: [
{
paramName: "RE Switch Only",
paramTitle: "Renewable Energy Switch",
paramDefinition: "Choose between 13% Renewable Energy Share (Fair) or 23% Renewable Energy Share (Ambitious).",
paramUnit: "",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramDefaultValue: 0,
paramValues: [
{
title: "Baseline",
value: 0
},
{
title: "Fair",
value: 1
},
{
title: "Ambisius",
value: 2
}
]
}
],
}
]
},
{
policyName: "Low Carbon Development Invesment",
policyCategory: POLICY_CATEGORY.GENERAL,
policyActivities: [
{
activityName: "Low Carbon Development Invesment",
activityDesc: "Investment for Emission Mitigation and Green Technology about 653 Bilion Rp start at 2020 and reach about 4,415 Bilion Rp at 2045",
activityTranslation: "",
activityParameters: [
{
paramName: "LCDI INVESTMENT SWITCH",
paramTitle: "LCDI Investment",
paramDefinition: "Enable LCDI Investment.",
paramUnit: "",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramDefaultValue: 0,
paramValues: [
{
title: "Baseline",
value: 0
},
{
title: "Fair & Ambisius",
value: 1
}
]
}
]
}
]
},
{
policyName: "Peat Treatment Implementation",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Peat Treatment Implementation",
activityDesc: "Packaging Scenarios in several Peat Treatments, Respectively " +
"(1) Peatland vegetation, targeted 1.75 milion ha at 2050 start from 2020, " +
"(2) Phasing out drainage-based, targeted 1.75 milion ha at 2050 start from 2020 agriculture, " +
"(3) Vegetative burning blocks, targeted 1.75 milion ha at 2050 start from 2020, " +
"(4) Canal blocking, targeted 1.75 milion ha at 2050 start from 2020. ",
activityTranslation: "",
activityParameters: [
{
paramName: "PEAT INTERVENTION SWITCH",
paramTitle: "Peat Intervention Switch",
paramDefinition: "Enable Peat Intervention Switch",
paramUnit: "",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramDefaultValue: 0,
paramValues: [
{
title: "Baseline",
value: 0
},
{
title: "Fair & Ambisius",
value: 1
}
]
}
]
}
]
},
{
policyName: "Increase Agriculture Productivity",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Increase Agriculture Productivity",
activityDesc: "Increase productivity of agriculture up to 4% p.a (Fair and Ambitious) compare to 2.2% p.a in Baseline Scenario",
activityTranslation: "",
activityParameters: [
{
paramName: "RPJMN AG PRODUCTIVITY SWITCH",
paramTitle: "RPJMN Agriculture Productivity Switch",
paramDefinition: "",
paramUnit: "Ha",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramDefaultValue: 0,
paramValues: [
{
title: "Baseline",
value: 0
},
{
title: "Fair & Ambisius",
value: 1
}
]
}
]
}
]
},
{
policyName: "Increase 1 Milion New Agriculture Land for 2019-2024",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Increase 1 Milion New Agriculture Land for 2019-2024",
activityDesc: "Increase 1 milion New Agriculture Land for 2019-2024 or 200.000 ha p.a since 2019",
activityTranslation: "",
activityParameters: [
{
paramName: "RPJMN SWITCH AGRICULTURE POLICY",
paramTitle: "RPJMN Switch Agriculture Policy",
paramDefinition: "Enable Agriculture Land Increase",
paramUnit: "",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramDefaultValue: 0,
paramValues: [
{
title: "Baseline",
value: 0
},
{
title: "Fair & Ambisius",
value: 1
}
]
}
]
}
]
}
];
/***
const policies = [
{
policyName: "Peat Restoration",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Peat Restoration",
activityDesc:
"Recovered degraded peatland by Rewetting and Revegation in peatland",
activityTranslation: "other to forest land policy",
activityParameters: [
{
paramName: "Expected Other Land to Forest Land by Peat Policy 1",
paramTitle: "Expected Other Land to Forest Land by Peat Policy 1",
paramDefinition:
"Target of peat restoration during period 2018-2024",
paramUnit: "Ha",
paramType: PARAMETER_TYPE.SLIDER,
paramDefaultValue: 300000,
paramMinValue: 0,
paramMaxValue: 2000000,
paramIntervalValue: 1,
paramPresetValue: [
{
title: Baseline,
value: 999,
},
{
title: Fair,
value: 10000
}
]
},
{
paramName: "Expected Other Land to Forest Land by Peat Policy 2",
paramTitle: "Expected Other Land to Forest Land by Peat Policy 2",
paramDefinition: "Target of peat restoration after 2024",
paramUnit: "Ha",
paramType: PARAMETER_TYPE.SLIDER,
paramDefaultValue: 100000,
paramMinValue: 0,
paramMaxValue: 2000000,
paramIntervalValue: 1
},
{
paramName: "Peat Policy Start Time",
paramTitle: "Peat Policy Start Time",
paramDefinition: "start policy time",
paramUnit: "",
paramType: PARAMETER_TYPE.SLIDER,
paramDefaultValue: 2018,
paramMinValue: 2018,
paramMaxValue: 2045,
paramIntervalValue: 1
},
{
paramName: "Peat Policy End Time",
paramTitle: "Peat Policy End Time",
paramDefinition: "end policy time",
paramUnit: "",
paramType: PARAMETER_TYPE.SLIDER,
paramDefaultValue: 2024,
paramMinValue: 2018,
paramMaxValue: 2045,
paramIntervalValue: 1
},
{
paramName: "Success Rate Peat Policy",
paramTitle: "Success Rate Peat Policy",
paramDefinition: "success rate policy",
paramUnit: "",
paramType: PARAMETER_TYPE.SLIDER,
paramDefaultValue: 100,
paramMinValue: 0,
paramMaxValue: 100,
paramIntervalValue: 1
}
]
}
]
},
{
policyName: "Reforestation",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Reforestation",
activityDesc:
"Recovered degraded forest back to be secondary forest with activies such as social forestry, forest and land rehabilitation, ecosystem recovery, city forest, etc",
activityTranslation: "other to forest land mineral land",
activityParameters: [
{
paramName: "Expected Other Land to Forest Land by Forest Policy 1",
paramTitle: "Expected Other Land to Forest Land by Forest Policy 1",
paramDefinition: "Target of peat reforestation period 2018-2024",
paramUnit: "Ha",
paramType: PARAMETER_TYPE.SLIDER,
paramDefaultValue: 500000,
paramMinValue: 0,
paramMaxValue: 2000000,
paramIntervalValue: 1
},
{
paramName: "Expected Other Land to Forest Land by Forest Policy 2",
paramTitle: "Expected Other Land to Forest Land by Forest Policy 2",
paramDefinition: "Target of reforestation after 2024",
paramUnit: "Ha",
paramType: PARAMETER_TYPE.SLIDER,
paramDefaultValue: 200000,
paramMinValue: 0,
paramMaxValue: 2000000,
paramIntervalValue: 1
},
{
paramName: "Forest Policy Start Time",
paramTitle: "Forest Policy Start Time",
paramDefinition: "start policy time",
paramUnit: "Year",
paramType: PARAMETER_TYPE.SLIDER,
paramDefaultValue: 2018,
paramMinValue: 2018,
paramMaxValue: 2045,
paramIntervalValue: 1
},
{
paramName: "Forest Policy End Time",
paramTitle: "Forest Policy End Time",
paramDefinition: "end policy time",
paramUnit: "Year",
paramType: PARAMETER_TYPE.SLIDER,
paramDefaultValue: 2024,
paramMinValue: 2018,
paramMaxValue: 2045,
paramIntervalValue: 1
},
{
paramName: "Success Rate Forest Policy",
paramTitle: "Success Rate Forest Policy",
paramDefinition: "Success rate of program (0-100%)",
paramUnit: "",
paramType: PARAMETER_TYPE.SLIDER,
paramDefaultValue: 100,
paramMinValue: 0,
paramMaxValue: 100,
paramIntervalValue: 1
}
]
}
]
},
{
policyName: "Deforesation Control",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "",
activityDesc: "",
activityTranslation: "",
activityParameters: [
{
paramName: "Deforestation Rate 2018-2024",
paramTitle: "Deforestation Rate 2018-2024",
paramDefinition:
"Percentage of Controlled Deforestation Rate period 2018-2024",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "%",
paramDefaultValue: 50,
paramMinValue: 0,
paramMaxValue: 100,
paramIntervalValue: 1
},
{
paramName: "Deforestation Rate Post 2024",
paramTitle: "Deforestation Rate Post 2024",
paramDefinition:
"Percentage of Controlled Deforestation Rate after 2024",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "%",
paramDefaultValue: 20,
paramMinValue: 0,
paramMaxValue: 100,
paramIntervalValue: 1
}
]
}
]
},
{
policyName: "The construction of 1 million ha of new rice fields",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "1 million paddy field outside java and bali",
activityDesc: "1 million paddy field outside java and bali",
activityTranslation: "other to agri",
activityParameters: [
{
paramName: "Expected Agriculture Land Increase by Policy",
paramTitle: "Expected Agriculture Land Increase by Policy",
paramDefinition: "Target of New Agricultrue Land per year",
paramType: PARAMETER_TYPE.SLIDER,
paramUnit: "Ha",
paramDefaultValue: 200000,
paramMinValue: 0,
paramMaxValue: 2000000,
paramIntervalValue: 1
}
]
}
]
},
{
policyName: "Energy Effiency",
policyCategory: POLICY_CATEGORY.ENERGY,
policyActivities: [
{
activityName: "",
activityDesc: "",
activityTranslation: "",
activityParameters: [
{
paramName: "EE RPJMN POLICY SWITCH",
paramTitle: "Energy Efficiency Policy Switch",
paramDefinition:
"Enable Energy Efficiency based on Desired Scenario",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramValues: [
{
title: "Baseline",
value: 1,
description: ""
},
{
title: "Fair",
value: 1,
description: ""
},
{
title: "Ambitious",
value: 1,
description: ""
}
]
}
]
}
]
},
{
policyName: "Fishery Policies",
policyCategory: POLICY_CATEGORY.WATER_FISHERIES,
policyActivities: [
{
activityName: "Enable All Fishery Policies",
activityDesc: "This options enable all fishery policies",
activityTranslation: "",
activityParameters: [
{
paramName: "FISHERIES ALL POLICIES SWITCH",
paramTitle: "All Fishery Policies",
paramDefinition: "Enable Fishery Policies",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramValues: [
{
title: "Baseline",
value: 0,
description: ""
},
{
title: "Fair and Ambitious",
value: 1,
description: ""
}
]
}
]
}
]
},
{
policyName: "LCDI Investments",
policyCategory: POLICY_CATEGORY.GENERAL,
policyActivities: [
{
activityName: "LCDI Investment",
activityDesc: "Enable Investment for LCDI",
activityTranslation: "",
activityParameters: [
{
paramName: "LCDI INVESTMENT SWITCH",
paramTitle: "LCDI Investment Switch",
paramDefinition: "Enabled Foreign Investment for LCDI Activities.",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramValues: [
{
title: "Baseline",
value: 0,
description: ""
},
{
title: "Fair & Ambitious",
value: 1,
description: ""
}
]
}
]
}
]
},
{
policyName: "Renewable Energy",
policyCategory: POLICY_CATEGORY.ENERGY,
policyActivities: [
{
activityName: "Renewable Energy",
activityDesc: "Enable Renewable Energy Policies",
activityTranslation: "",
activityParameters: [
{
paramName: "RENEWABLE ENERGY SWITCH",
paramTitle: "Renewable Energy Switch",
paramDefinition: "Enable Renewable Energy Policies",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramValues: [
{
title: "OFF",
value: 0,
description: "Renewable Energy Policies Disabled."
},
{
title: "ON",
value: 1,
description: "Renewable Energy Policies Enabled."
}
]
}
]
}
]
},
{
policyName: "Peat Intervention",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Peat Intervention",
activiesDesc: "",
activityTranslation: "",
activityParameters: [
{
paramName: "PEAT INTERVENTION SWITCH",
paramTitle: "Peat Intervention Switch",
paramDefinition: "Enable Peat Intervention Policies",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramValues: [
{
title: "OFF",
value: 0,
description: "Peat Intervention Disabled."
},
{
title: "ON",
value: 1,
description: "Peat Intervention Enabled."
}
]
}
]
}
]
},
{
policyName: "Agriculture Productivity",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Improve Agriculture Production",
activityDesc: "",
activityTranslation: "",
activityParameters: [
{
paramName: "RPJMN AG PRODUCTIVITY SWITCH",
paramTitle: "Agriculture Productivity Switch",
paramDefinition: "Enable Agriculture Productivity based on RPJMN",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramValues: [
{
title: "OFF",
value: 0,
description: "Agriculture Improvement Disabled."
},
{
title: "ON",
value: 1,
description: "Agriculture Improvement Enabled."
}
]
}
]
}
]
},
{
policyName: "Agriculture Productivity Policy Set",
policyCategory: POLICY_CATEGORY.LAND_AGRICULTURE,
policyActivities: [
{
activityName: "Other Land to Agriculture Land Conversion",
activityDesc:
"Set Desired Value for Other Land to Agriculture Land Conversion",
activityTranslation: "",
activityParameters: [
{
paramName: "RPJMN SWITCH AGRICULTURE POLICY",
paramTitle: "Agriculture Switch",
paramDefinition: "Enable Agriculture Productivity based on RPJMN",
paramType: PARAMETER_TYPE.DROPDOWN_MENU,
paramValues: [
{
title: "OFF",
value: 0,
description: "Agriculture Improvement Disabled."
},
{
title: "ON",
value: 1,
description: "Agriculture Improvement Enabled."
}
]
}
]
}
]
}
];
*/
export { policies, PARAMETER_TYPE, POLICY_CATEGORY };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment