Data Cart

Your data extract

0 variables
0 samples
View Cart
MIG1_5_NP
Administrative zone of residence 5 years ago, Nepal; consistent boundaries, GIS

Codes and Frequencies



An 'X' indicates the category is available for that sample

Eastern Development Region
524001MechiXX
524002KoshiXX
524003SagarmathaXX
Central Development Region
524004JanakpurXX
524005BagmatiXX
524006NarayaniXX
Western Development Region
524007GandakiXX
524008DhawalagiriXX
524009LumbiniXX
Mid-Western Development Region
524010RaptiXX
524011BheriXX
524012KarnaliXX
Far-Western Development Region
524013SetiXX
524014MahakaliXX
524097Foreign CountryXX
524098UnknownXX
524099NIUXX

Explore how IPUMS created this variable

Download


      class Mig1_5_np : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::np2001a: {
      if (NP2001A_0452() == 99 && NP2001A_0416() == 3)
        a = 524097;
    } break;
    case dataset_id::np2011a: {
      if (NP2011A_0426() == 99 && NP2011A_0425() == 3)
        a = 524097;
    } break;
    }

    setData(a);
  }
};