Data Cart

Your data extract

0 variables
0 samples
View Cart
MIG1_5_IL
District of residence 5 years ago, Israel; 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_il : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::il1972a: {
      if (IL1972A_0408() == 1)
        a = 376097;
    } break;
    case dataset_id::il1983a: {
      if (IL1983A_0413() == 2)
        a = 376097;
    } break;
    case dataset_id::il1995a: {
      if (IL1995A_0425() == 2 || IL1995A_0425() == 3)
        a = GEO1_IL(0);
    } break;
    }

    setData(a);
  }
};