Data Cart

Your data extract

0 variables
0 samples
View Cart
MIG1_5_GT
Department of residence 5 years ago, Guatemala; 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_5_gt : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::gt1994a: {
      if (GT1994A_0414() == 99 && GT1994A_0416() != 99)
        a = 320097;
      if (GT1994A_0414() == 99 && GT1994A_0416() == 99 && GT1994A_0401() >= 4)
        a = GEO1_GT(0);
    } break;
    }

    setData(a);
  }
};