diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-10-29 13:27:40 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-10-29 17:34:39 +0000 |
| commit | f3fa6d90bdc7225bdbe6300f0588c5935d1cc217 (patch) | |
| tree | 7f2428fee6b7c0d0e765d3f0815ac04d0881ddf7 /app/Census/CensusOfUnitedStates1910.php | |
| parent | 0b18a98d2ceaeebc288d72a27a147055f7d6115d (diff) | |
| download | webtrees-f3fa6d90bdc7225bdbe6300f0588c5935d1cc217.tar.gz webtrees-f3fa6d90bdc7225bdbe6300f0588c5935d1cc217.tar.bz2 webtrees-f3fa6d90bdc7225bdbe6300f0588c5935d1cc217.zip | |
US Census
Diffstat (limited to 'app/Census/CensusOfUnitedStates1910.php')
| -rw-r--r-- | app/Census/CensusOfUnitedStates1910.php | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/app/Census/CensusOfUnitedStates1910.php b/app/Census/CensusOfUnitedStates1910.php index 4a1d100f31..beffa944a9 100644 --- a/app/Census/CensusOfUnitedStates1910.php +++ b/app/Census/CensusOfUnitedStates1910.php @@ -35,7 +35,35 @@ class CensusOfUnitedStates1910 extends CensusOfUnitedStates implements CensusInt */ public function columns() { return array( - new CensusColumnNull($this, 'XXXX', 'XXXX'), + new CensusColumnSurnameGivenNameInitial($this, 'Name', 'Name'), + new CensusColumnRelationToHead($this, 'Relation', 'Relationship of each person to the head of the family'), + new CensusColumnSexMF($this, 'Sex', 'Sex'), + new CensusColumnNull($this, 'Race', 'Color or race'), + new CensusColumnAge($this, 'Age', 'Age at last birthday'), + new CensusColumnNull($this, 'Condition', 'Whether single, married, widowed, or divorced'), + new CensusColumnYearsMarried($this, 'Marr', 'Number of years of present marriage'), + new CensusColumnChildrenBornAlive($this, 'Chil', 'Mother of how many children'), + new CensusColumnChildrenLiving($this, 'Chil', 'Number of these children living'), + new CensusColumnBirthPlaceSimple($this, 'Birthplace', 'Place of birth of this person'), + new CensusColumnFatherBirthPlaceSimple($this, 'Father’s birthplace', 'Place of birth of father of this person'), + new CensusColumnFatherBirthPlaceSimple($this, 'Mother’s birthplace', 'Place of birth of mother of this person'), + new CensusColumnNull($this, 'Imm', 'Year of immigration to the United States'), + new CensusColumnNull($this, 'Nat', 'Whether naturalized or alien'), + new CensusColumnNull($this, 'Language', 'Whether able to speak English, of if not, give language spoken'), + new CensusColumnOccupation($this, 'Occupation', 'Trade or profession of, or particular kind of work done by this person'), + new CensusColumnNull($this, 'Ind', 'General nature of industry'), + new CensusColumnNull($this, 'Emp', 'Whether an employer, employee, or work on own account'), + new CensusColumnNull($this, 'Unemployed', 'Whether out of work on April 15, 1910'), + new CensusColumnNull($this, 'Unemployed', 'Number of weeks out of work in 1909'), + new CensusColumnNull($this, 'Read', 'Whether able to read'), + new CensusColumnNull($this, 'Write', 'Whether able to write'), + new CensusColumnNull($this, 'School', 'Attended school since September 1, 1909'), + new CensusColumnNull($this, 'Home', 'Owned or rented'), + new CensusColumnNull($this, 'Mort', 'Owned free or mortgaged'), + new CensusColumnNull($this, 'Farm', 'Farm or house'), + new CensusColumnNull($this, 'CW', 'Whether a survivor of the Union or Confederate Army or Navy'), + new CensusColumnNull($this, 'Blind', 'Whether blind (both eyes)'), + new CensusColumnNull($this, 'Deaf', 'Whether deaf and dumb'), ); } } |
