Codes and Frequencies
Can't find the category you are looking for? Try the Detailed codes
Explore how IPUMS created this variable
Most IPUMS data transformations are performed using variable harmonization tables that specify how each value in the source data is recoded. Some variables also require programming logic in addition to the harmonization table. The harmonization documents for this variable are:
- Harmonization table
- Supplemental programming
- Instructions for interpreting harmonization documents
class Bplro : public Editor {
public:
Bplro(VarPointer varInfo) : Editor(varInfo) {}
void edit() {
long a = getRecoded();
switch (dataSet) {
case dataset_id::ro1977a: {
if (RO1977A_0402() == 44)
a = RO1977A_0018(0);
} break;
case dataset_id::ro1992a: {
if (RO1992A_0416() == 0 && RO1992A_0017(0) <= 40)
a = RO1992A_0017(0);
if (RO1992A_0416() == 0 && RO1992A_0017(0) >= 41)
a = 40;
} break;
case dataset_id::ro2002a: {
if (RO2002A_0413() == 90)
a = RO2002A_0018(0);
} break;
}
setData(a);
}
};
Description
BPLRO indicates the county in Romania in which the person was born.
Comparability — General
The variable is comparable across Romanian samples aside from boundary changes that may have occurred. In particular, there is some change in geography around Bucharest. Calarasi and Giurgiu counties are not identified in 1977. Ilfov is not identified in the 1992 sample, and is presumably combined with Bucharest.
The 2002 sample provides more detail within the Bucharest municipality; the units can be combined to make them compatible with the earlier samples.
Universe
- Romania 1977: All persons
- Romania 1992: All persons
- Romania 2002: All persons
- Romania 2011: All persons
Availability
- Romania: 1977, 1992, 2002, 2011

Loading...