Natalia Gonzalez
unread,Feb 25, 2025, 4:53:02 PMFeb 25Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to inmap-users
The InMAP README file states this:
* Numbers of deaths attributable to PM<sub>2.5</sub> in each of the populations are obtained by defining an expression in the configuration file based on the variables `TotalPM25`, the population variable of interest, and the overall or population-specific mortality rate. For example, deaths among the total population could be calculated with the following entry in the configuration file: `TotalPopD = "(exp(log(1.078)/10 * TotalPM25) - 1) * TotalPop * AllCause / 100000"`. Numbers of deaths are measured in units of deaths/year.
I am confused, because it seems that the equation `TotalPopD = "(exp(log(1.078)/10 * TotalPM25) - 1) * TotalPop * AllCause / 100000"` is calculating a new death rate rather than number of deaths. The units of TotalPop is [# of people] and AllCause is [deaths/100000 people] so TotalPop * AllCause = # of deaths. When you divide by 100,000 in the equation, it is once again in units of [deaths/100000 people]. Should the documentation instead say that this is the equation to get a new death rate a a consequence of the emissions inputted? To calculate how many deaths are caused as a consequence of the emissions inputted, wouldn't you need to do (TotalPop*TotalPopD) - (TotalPop*AllCause) = difference in # of deaths as a consequence of the emissions?