Data Dictionary: | Carbon Dioxide Emissions 2002 |
Data Source: |
T2. | Tons of CO2 a Year Per Person | |||||||
Universe: | ||||||||
T002_001Tons of CO2 a Year Per Person
Percent base:
None - percentages not computed
Formula used to compute this variable:
if(Convert.ToDouble(ORG:pop2000) == 0)
Return_Value.IsNull = true;
else if (ORG:pop2000.IsNull)
Return_Value.IsNull = true;
else
Return_Value = Convert.ToDouble(ORG:CO_PER_DAY * 365) / Convert.ToDouble(ORG:pop2000);
|