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 Geo2_ch : public Editor {
public:
Geo2_ch(VarPointer varInfo) : Editor(varInfo) {}
void edit() {
auto result = getRecoded();
if (dataSet == dataset_id::ch2011a) {
result = MISSING;
if (countPeople() > 0) {
RecordPointer person_rec = people().front();
auto source_data = getSourceData(person_rec);
result = applyTransTable(source_data);
}
}
setData(result);
}
};
Description
GEO2_CH identifies the household's regional planning unit within Switzerland in 2011. Regional planning units are the second level administrative units of the country, after cantons. A GIS map (in shapefile format), corresponding to GEO2_CH can be downloaded from the GIS Boundary files page in the IPUMS International web site.
The full set of geography variables for Switzerland 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.
Comparability — General
GEO2_CH includes data from the 2011 sample only. Earlier sample years do not include sufficient data to be included in GEO2_CH.
Where officially-defined regional planning units have populations less than 20,000, they have been regionalized (combined) with neighboring regional planning units.
A few regional planning units in 2011 Switzerland are not entirely contained within their higher first level geographical unit, cantons. Below is a list of regional planning units that are in two separate cantons:
- Innerschwyz - part of Luzern and Schwyz
- Grenchen-Büren - part of Bern and Solothurn
- Regio Wil - part of St. Gallen and Thurgau
- Region Appenzell AR-St. Gallen-Bodensee - part of Appenzell Ausserrhoden and St. Gallen
- St. Galler Rheintal - part of Appenzell Innerrhoden and St. Gallen
- Wiggertal - part of Aargau and Luzern
- Centre Jura - part of Bern and Neuchâtel
Universe
- All persons
Availability
- Switzerland: 2011

Loading...