1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2025 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace Fisharebest\Webtrees\Census;
readonly class CensusOfUnitedStates1890 extends CensusOfUnitedStates implements CensusInterface
{
public function censusDate(): string
{
return '02 JUN 1890';
}
/**
* @return list<CensusColumnInterface>
*/
public function columns(): array
{
return [
new CensusColumnGivenNameInitial($this, 'Name', 'Christian name in full, and initial of middle name'),
new CensusColumnSurname($this, 'Surname', 'Surname'),
new CensusColumnNull($this, 'CW', 'Whether a soldier, sailor or marine during the civil war (U.S. or Conf.), or widow of such person'),
new CensusColumnRelationToHeadEnglish($this, 'Relation', 'Relation to head of family'),
new CensusColumnNull($this, 'Race', 'Whether white, black, mulatto, quadroon, octoroon, Chinese, Japanese, or Indian'),
new CensusColumnSexMF($this, 'Sex', 'Sex'),
new CensusColumnAge($this, 'Age', 'Age at nearest birthday. If under one year, give age in months'),
new CensusColumnConditionUs($this, 'Cond', 'Whether single, married, widowed, or divorced'),
new CensusColumnMonthIfMarriedWithinYear($this, 'Mar', 'Whether married during the census year (June 1, 1889, to May 31, 1890)'),
new CensusColumnNull($this, 'Chil', 'Mother of how many children, and number of these children living'),
new CensusColumnBirthPlaceSimple($this, 'BP', 'Place of birth'),
new CensusColumnFatherBirthPlaceSimple($this, 'FBP', 'Place of birth of father'),
new CensusColumnFatherBirthPlaceSimple($this, 'MBP', 'Place of birth of mother'),
new CensusColumnNull($this, 'US', 'Number of years in the United States'),
new CensusColumnNull($this, 'Nat', 'Whether naturalized'),
new CensusColumnNull($this, 'Papers', 'Whether naturalization papers have been taken out'),
new CensusColumnOccupation($this, 'Occupation', 'Profession, trade, occupation'),
new CensusColumnNull($this, 'Unemp', 'Months unemployed during the census year (June 1, 1889, to May 31, 1890)'),
new CensusColumnNull($this, 'Read', 'Able to read'),
new CensusColumnNull($this, 'Write', 'Able to write'),
new CensusColumnNull($this, 'Eng', 'Able to speak English. If not the language or dialect spoken'),
new CensusColumnNull($this, 'Disease', 'Whether suffering from acute or chronic disease, with name of disease and length of time afflicted'),
new CensusColumnNull($this, 'Infirm', 'Whether defective in mind, sight, hearing, or speech, or whether crippled, maimed, or deformed, with name of defect'),
new CensusColumnNull($this, 'Prisoner', 'Whether a prisoner, convict, homeless child, or pauper'),
];
}
}
|