Data Cart

Your data extract

0 variables
0 samples
View Cart
MIG1_P_SI
Region of previous residence, Slovenia; consistent boundaries, GIS

Codes and Frequencies



Loading Frequency Data...

Can't find the category you are looking for? Try the Detailed codes

Explore how IPUMS created this variable

Download


      class Mig1_p_si : public Editor {

public:
  Mig1_p_si(VarPointer varInfo) : Editor(varInfo) {}
  void edit() {

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::si2002a: {
      if (SI2002A_0406() == 5 && SI2002A_0407() == 99)
        a = 705097;
      if (SI2002A_0406() == 1 && SI2002A_0407() == 99)
        a = GEO1_SI(0);
    } break;
    }

    setData(a);
  }
};