Data Cart

Your data extract

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

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::ht1982a: {
      if (HT1982A_0437() == 999 && HT1982A_0402() >= 5 &&
          HT1982A_0402() <= 99 &&
          (HT1982A_0406() == 1 || HT1982A_0406() == 4 || HT1982A_0406() == 5))
        a = GEO1_HT(0);
    } break;
    }

    setData(a);
  }
};