Code
viewof emissions_rate_in = Inputs.range([0,20], {value: 10.5, step:0.1, label: 'emissions rate Gt Carbon'})
viewof drawdown_factor_in = Inputs.range([0,0.01], {value: 0.001, step:0.0005, label: 'drawdown factor'})
viewof ppm_to_GtC_in = Inputs.select([2.3,2.13], {value: 2.3, step:0.1, label: 'ppmv to GtC'})
climate_formulae = ['drawdown','temperature','CO2_concentration','concentration_factor','temperature_delta']
embed(
calcuvizspec({
models: [main],
input_cursors: [{emissions_rate_in, ppm_to_GtC_in, drawdown_factor_in}],
mark: 'text',
encodings: {
x: {name: 'year_in', type:'nominal', domain: [2015,2016,2017,2020,2030,2060,2090,2100]},
y: {name: 'climate_sensitivity_in', type: 'nominal', domain: [2,3,4]},
text: {name: 'value', type: 'quantitative', format:',.2f'},
row: {name: 'formula', type:'nominal', domain: climate_formulae},
color: {name: 'formula', type:'nominal', domain: climate_formulae, legend: false},
},
width: 500, height:50
}))
emissions_rate_in = 10.5
drawdown_factor_in = 0.001
ppm_to_GtC_in = 2.3
climate_formulae = Array(5) ["drawdown", "temperature", "CO2_concentration", "concentration_factor", "temperature_delta"]
OJS Runtime Error (line 29, column 3)
calcuvizspec is not defined
Code
embed(
calcuvizspec({
models: [main],
input_cursors: [{emissions_rate_in, ppm_to_GtC_in, drawdown_factor_in}],
mark: 'line',
encodings: {
x: {name: 'year_in', type:'quantitative', domain: _.range(2015,2100,3)},
color: {name: 'climate_sensitivity_in', type: 'nominal', domain: [2,3,4], independent:true}, //
y: {name: 'value', type: 'quantitative', zero: false, independent:true},
row: {name: 'formula', type:'nominal', domain: ['temperature','temperature_delta']},
//color: {name: 'formula', type:'nominal', domain: climate_formulae, legend: true},
},
width: 400, height:40
}))
OJS Runtime Error (line 44, column 3)
calcuvizspec is not defined