Codes and Frequencies
Can't find the category you are looking for? Try the Detailed codes
Explore how IPUMS created this variable
Most IPUMS data transformations are performed using variable harmonization tables that specify how each value in the source data is recoded. Some variables also require programming logic in addition to the harmonization table. The harmonization documents for this variable are:
- Harmonization table
- Supplemental programming
- Instructions for interpreting harmonization documents
class Geo1_uk2001 : public Editor {
public:
Geo1_uk2001(VarPointer varInfo) : Editor(varInfo) {}
void edit() {
auto result = getRecoded();
if (dataSet == dataset_id::uk2001a) {
result = MISSING;
if (countPeople() > 0) {
RecordPointer person_rec = people().front();
auto source_data = getSourceData(person_rec);
result = applyTransTable(source_data);
}
}
setData(result);
}
};
Description
GEO1_ UK2001 identifies the household's region within United Kingdom in 2001. Regions are the first level administrative units of the country. A GIS map (in shapefile format), corresponding to GEO1_ UK2001 can be downloaded from the GIS Boundary files page in the IPUMS International web site.
The full set of geography variables for United Kingdoms can be found in the IPUMS International Geography variables list. For cross-national geographic analysis on the first and second major administrative level, refer to GEOLEV1, and GEOLEV2. More information on IPUMS-International geography can be found here.
Universe
- All persons
Availability
- United Kingdom: 2001
![](/international-action/assets/ajax-loader-3d0eaafca10b29dd00e7960a95712f89f62969536226e0216f90fb57705e7516.gif)
Loading...