@mailwoman/tiger 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/block-group.ts +151 -0
- package/class-code.ts +1026 -0
- package/constants.ts +252 -0
- package/county-subdivision.ts +154 -0
- package/county.ts +135 -0
- package/files.ts +251 -0
- package/functional-status.ts +64 -0
- package/geoid.ts +678 -0
- package/index.ts +18 -0
- package/legal-statistical-area.ts +222 -0
- package/out/block-group.d.ts +135 -0
- package/out/block-group.d.ts.map +1 -0
- package/out/block-group.js +7 -0
- package/out/block-group.js.map +1 -0
- package/out/class-code.d.ts +863 -0
- package/out/class-code.d.ts.map +1 -0
- package/out/class-code.js +864 -0
- package/out/class-code.js.map +1 -0
- package/out/constants.d.ts +220 -0
- package/out/constants.d.ts.map +1 -0
- package/out/constants.js +98 -0
- package/out/constants.js.map +1 -0
- package/out/county-subdivision.d.ts +139 -0
- package/out/county-subdivision.d.ts.map +1 -0
- package/out/county-subdivision.js +7 -0
- package/out/county-subdivision.js.map +1 -0
- package/out/county.d.ts +120 -0
- package/out/county.d.ts.map +1 -0
- package/out/county.js +9 -0
- package/out/county.js.map +1 -0
- package/out/files.d.ts +118 -0
- package/out/files.d.ts.map +1 -0
- package/out/files.js +142 -0
- package/out/files.js.map +1 -0
- package/out/functional-status.d.ts +64 -0
- package/out/functional-status.d.ts.map +1 -0
- package/out/functional-status.js +65 -0
- package/out/functional-status.js.map +1 -0
- package/out/geoid.d.ts +438 -0
- package/out/geoid.d.ts.map +1 -0
- package/out/geoid.js +255 -0
- package/out/geoid.js.map +1 -0
- package/out/index.d.ts +18 -0
- package/out/index.d.ts.map +1 -0
- package/out/index.js +18 -0
- package/out/index.js.map +1 -0
- package/out/legal-statistical-area.d.ts +222 -0
- package/out/legal-statistical-area.d.ts.map +1 -0
- package/out/legal-statistical-area.js +223 -0
- package/out/legal-statistical-area.js.map +1 -0
- package/out/sdk/fetch.d.ts.map +1 -0
- package/out/sdk/fetch.js.map +1 -0
- package/out/sdk/index.d.ts +7 -0
- package/out/sdk/index.d.ts.map +1 -0
- package/out/sdk/index.js +7 -0
- package/out/sdk/index.js.map +1 -0
- package/out/sdk/redistricting.d.ts.map +1 -0
- package/out/sdk/redistricting.js.map +1 -0
- package/out/sdk/schema.d.ts.map +1 -0
- package/out/sdk/schema.js.map +1 -0
- package/out/sdk/state/TIGERTabulatedBlockEntity.d.ts +13 -0
- package/out/sdk/state/TIGERTabulatedBlockEntity.d.ts.map +1 -0
- package/out/sdk/state/TIGERTabulatedBlockEntity.js +22 -0
- package/out/sdk/state/TIGERTabulatedBlockEntity.js.map +1 -0
- package/out/sdk/state/TIGERTractEntity.d.ts +31 -0
- package/out/sdk/state/TIGERTractEntity.d.ts.map +1 -0
- package/out/sdk/state/TIGERTractEntity.js +7 -0
- package/out/sdk/state/TIGERTractEntity.js.map +1 -0
- package/out/sdk/state/block-operations.d.ts +36 -0
- package/out/sdk/state/block-operations.d.ts.map +1 -0
- package/out/sdk/state/block-operations.js +37 -0
- package/out/sdk/state/block-operations.js.map +1 -0
- package/out/sdk/state/index.d.ts +9 -0
- package/out/sdk/state/index.d.ts.map +1 -0
- package/out/sdk/state/index.js +9 -0
- package/out/sdk/state/index.js.map +1 -0
- package/out/state.d.ts +595 -0
- package/out/state.d.ts.map +1 -0
- package/out/state.js +384 -0
- package/out/state.js.map +1 -0
- package/out/tabulation-block.d.ts +43 -0
- package/out/tabulation-block.d.ts.map +1 -0
- package/out/tabulation-block.js +9 -0
- package/out/tabulation-block.js.map +1 -0
- package/out/tract.d.ts +36 -0
- package/out/tract.d.ts.map +1 -0
- package/out/tract.js +8 -0
- package/out/tract.js.map +1 -0
- package/out/tsconfig.tsbuildinfo +1 -0
- package/package.json +41 -0
- package/sdk/data/nation/index.json +14642 -0
- package/sdk/index.ts +7 -0
- package/sdk/initialize.sql +161 -0
- package/sdk/state/TIGERTabulatedBlockEntity.ts +25 -0
- package/sdk/state/TIGERTractEntity.ts +34 -0
- package/sdk/state/block-operations.ts +69 -0
- package/sdk/state/index.ts +9 -0
- package/state.ts +553 -0
- package/tabulation-block.ts +68 -0
- package/tract.ts +52 -0
- package/tsconfig.json +16 -0
- package/typedoc.json +5 -0
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @copyright Sister Software.
|
|
3
|
+
* @license AGPL-3.0
|
|
4
|
+
* @author Teffen Ellis, et al.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Describes the particular typology for each geographic entity.
|
|
9
|
+
*
|
|
10
|
+
* For legal entities, the LSAD reflects the term that appears in legal documentation pertaining to
|
|
11
|
+
* the entity, such as a treaty, charter, legislation, resolution, or ordinance.
|
|
12
|
+
*
|
|
13
|
+
* For statistical entities, the LSAD is the term assigned by the Census Bureau or other agency
|
|
14
|
+
* defining the entity.
|
|
15
|
+
*
|
|
16
|
+
* @title Legal/Statistical Area Description
|
|
17
|
+
*/
|
|
18
|
+
export enum LegalStatisticalAreaDescription {
|
|
19
|
+
/**
|
|
20
|
+
* - American Indian Area
|
|
21
|
+
* - Congressional District
|
|
22
|
+
* - Consolidated City
|
|
23
|
+
* - County or Equivalent Feature,
|
|
24
|
+
* - County Subdivision
|
|
25
|
+
* - Economic Census Place
|
|
26
|
+
* - Elementary School District
|
|
27
|
+
* - Incorporated Place,
|
|
28
|
+
* - Local/Tribal Legislative District
|
|
29
|
+
* - Military Installation
|
|
30
|
+
* - Nation
|
|
31
|
+
* - Secondary School District,
|
|
32
|
+
* - Special School Administrative Area
|
|
33
|
+
* - Special-Purpose District
|
|
34
|
+
* - State Legislative District (Lower Chamber)
|
|
35
|
+
* - State Legislative District (Upper Chamber)
|
|
36
|
+
* - State or Equivalent Feature
|
|
37
|
+
* - Tribal Subdivision
|
|
38
|
+
* - Unified School District
|
|
39
|
+
* - Voting District
|
|
40
|
+
*/
|
|
41
|
+
Other = "00",
|
|
42
|
+
/**
|
|
43
|
+
* County or Equivalent Feature.
|
|
44
|
+
*/
|
|
45
|
+
CityAndBorough = "03",
|
|
46
|
+
/**
|
|
47
|
+
* County or Equivalent Feature.
|
|
48
|
+
*/
|
|
49
|
+
Borough = "04",
|
|
50
|
+
/**
|
|
51
|
+
* County or Equivalent Feature.
|
|
52
|
+
*/
|
|
53
|
+
CensusArea = "05",
|
|
54
|
+
/**
|
|
55
|
+
* County or Equivalent Feature.
|
|
56
|
+
*/
|
|
57
|
+
County = "06",
|
|
58
|
+
/**
|
|
59
|
+
* County or Equivalent Feature.
|
|
60
|
+
*/
|
|
61
|
+
District = "07",
|
|
62
|
+
/**
|
|
63
|
+
* County or Equivalent Feature, Economic Census Place.
|
|
64
|
+
*/
|
|
65
|
+
Island = "10",
|
|
66
|
+
/**
|
|
67
|
+
* County or Equivalent Feature.
|
|
68
|
+
*/
|
|
69
|
+
Municipality = "12",
|
|
70
|
+
/**
|
|
71
|
+
* County or Equivalent Feature.
|
|
72
|
+
*/
|
|
73
|
+
Municipio = "13",
|
|
74
|
+
/**
|
|
75
|
+
* County or Equivalent Feature, Economic Census Place.
|
|
76
|
+
*/
|
|
77
|
+
Parish = "15",
|
|
78
|
+
/**
|
|
79
|
+
* County Subdivision.
|
|
80
|
+
*/
|
|
81
|
+
Parrio = "20",
|
|
82
|
+
/**
|
|
83
|
+
* County Subdivision, Economic Census Place.
|
|
84
|
+
*/
|
|
85
|
+
BoroughCounty = "21",
|
|
86
|
+
/**
|
|
87
|
+
* County Subdivision.
|
|
88
|
+
*/
|
|
89
|
+
CCD = "22",
|
|
90
|
+
/**
|
|
91
|
+
* County Subdivision.
|
|
92
|
+
*/
|
|
93
|
+
CensusSubArea = "23",
|
|
94
|
+
/**
|
|
95
|
+
* County Subdivision.
|
|
96
|
+
*/
|
|
97
|
+
CensusSubDistrict = "24",
|
|
98
|
+
/**
|
|
99
|
+
* Consolidated City, County or Equivalent Feature, County Subdivision, Economic Census Place,
|
|
100
|
+
* Incorporated Place.
|
|
101
|
+
*/
|
|
102
|
+
City = "25",
|
|
103
|
+
CountySuffixCountySubdivision = "26",
|
|
104
|
+
DistrictSuffixCountySubdivision = "27",
|
|
105
|
+
DistrictSuffixCountySubdivisionTribal = "28",
|
|
106
|
+
PrecinctSuffixCountySubdivision = "29",
|
|
107
|
+
PrecinctPrefixCountySubdivision = "30",
|
|
108
|
+
GoreSuffixCountySubdivision = "31",
|
|
109
|
+
GrantSuffixCountySubdivision = "32",
|
|
110
|
+
LocationSuffixCountySubdivision = "36",
|
|
111
|
+
MunicipalitySuffixEconomicCensusPlaceIncorporatedPlace = "37",
|
|
112
|
+
PlantationSuffixCountySubdivision = "39",
|
|
113
|
+
BarrioPuebloSuffixCountySubdivision = "41",
|
|
114
|
+
PurchaseSuffixCountySubdivision = "42",
|
|
115
|
+
TownSuffixCountySubdivisionEconomicCensusPlaceIncorporatedPlace = "43",
|
|
116
|
+
TownshipSuffixCountySubdivisionEconomicCensusPlace = "44",
|
|
117
|
+
TownshipPrefixCountySubdivision = "45",
|
|
118
|
+
UtSuffixCountySubdivision = "46",
|
|
119
|
+
VillageSuffixCountySubdivisionEconomicCensusPlaceIncorporatedPlace = "47",
|
|
120
|
+
CharterTownshipSuffixCountySubdivisionEconomicCensusPlace = "49",
|
|
121
|
+
SubbarrioSuffixSubMinorCivilDivision = "51",
|
|
122
|
+
CityAndBoroughSuffixEconomicCensusPlaceIncorporatedPlace = "53",
|
|
123
|
+
ComunidadSuffixCensusDesignatedPlace = "55",
|
|
124
|
+
CdpSuffixCensusDesignatedPlaceEconomicCensusPlace = "57",
|
|
125
|
+
ZonaUrbanaSuffixCensusDesignatedPlace = "62",
|
|
126
|
+
RegionSuffixCensusRegion = "68",
|
|
127
|
+
DivisionSuffixCensusDivision = "69",
|
|
128
|
+
UgaSuffixUrbanGrowthArea = "70",
|
|
129
|
+
CmsaConsolidatedMetropolitanStatisticalAreaAndMetropolitanStatisticalArea = "71",
|
|
130
|
+
MsaConsolidatedMetropolitanStatisticalAreaAndMetropolitanStatisticalArea = "72",
|
|
131
|
+
PrimaryMetropolitanStatisticalAreaPrimaryMetropolitanStatisticalArea = "73",
|
|
132
|
+
NewEnglandCountyMetropolitanAreaNewEnglandCountyMetropolitanArea = "74",
|
|
133
|
+
UrbanizedAreaSuffixUrbanArea = "75",
|
|
134
|
+
UrbanClusterSuffixUrbanArea = "76",
|
|
135
|
+
AlaskaNativeRegionalCorporationSuffixAlaskaNativeRegionalCorporation = "77",
|
|
136
|
+
HawaiianHomeLandSuffixHawaiianHomeLand = "78",
|
|
137
|
+
AnvsaSuffixAlaskaNativeVillageStatisticalArea = "79",
|
|
138
|
+
TdsaSuffixTribalDesignatedStatisticalArea = "80",
|
|
139
|
+
ColonySuffixAmericanIndianArea = "81",
|
|
140
|
+
CommunitySuffixAmericanIndianAreaTribalSubdivision = "82",
|
|
141
|
+
JointUseAreaSuffixAmericanIndianJointUseArea = "83",
|
|
142
|
+
PuebloSuffixAmericanIndianArea = "84",
|
|
143
|
+
RancheriaSuffixAmericanIndianArea = "85",
|
|
144
|
+
ReservationSuffixAmericanIndianAreaCountySubdivision = "86",
|
|
145
|
+
ReserveSuffixAmericanIndianArea = "87",
|
|
146
|
+
OtsaSuffixOklahomaTribalStatisticalArea = "88",
|
|
147
|
+
TrustLandSuffixAmericanIndianArea = "89",
|
|
148
|
+
JointUseOtsaSuffixAmericanIndianJointUseArea = "90",
|
|
149
|
+
RanchSuffixAmericanIndianArea = "91",
|
|
150
|
+
SdtsaSuffixStateDesignatedTribalStatisticalArea = "92",
|
|
151
|
+
IndianVillageSuffixAmericanIndianArea = "93",
|
|
152
|
+
VillageSuffixAmericanIndianArea = "94",
|
|
153
|
+
IndianCommunitySuffixAmericanIndianArea = "95",
|
|
154
|
+
IndianReservationSuffixAmericanIndianArea = "96",
|
|
155
|
+
IndianRancheriaSuffixAmericanIndianArea = "97",
|
|
156
|
+
IndianColonySuffixAmericanIndianArea = "98",
|
|
157
|
+
PuebloDeAmericanIndianArea = "99",
|
|
158
|
+
PuebloOfAmericanIndianArea = "9C",
|
|
159
|
+
RanchReservationSuffixAmericanIndianArea = "9D",
|
|
160
|
+
RancheriaReservationSuffixAmericanIndianArea = "9E",
|
|
161
|
+
RanchesSuffixAmericanIndianArea = "9F",
|
|
162
|
+
BalanceOfCountyEconomicCensusPlace = "B1",
|
|
163
|
+
BalanceOfParishEconomicCensusPlace = "B2",
|
|
164
|
+
BalanceOfBoroughEconomicCensusPlace = "B3",
|
|
165
|
+
BalanceOfCensusAreaEconomicCensusPlace = "B4",
|
|
166
|
+
TownBalanceEconomicCensusPlace = "B5",
|
|
167
|
+
TownshipBalanceEconomicCensusPlace = "B6",
|
|
168
|
+
CharterTownshipBalanceEconomicCensusPlace = "B7",
|
|
169
|
+
BalanceOfEconomicCensusPlace = "B8",
|
|
170
|
+
BlockGroupPrefixBlockGroup = "BG",
|
|
171
|
+
BalanceOfIslandEconomicCensusPlace = "BI",
|
|
172
|
+
BlockPrefixTabulationBlock = "BK",
|
|
173
|
+
BalanceIncorporatedPlace = "BL",
|
|
174
|
+
CongressionalDistrictAtLargeActualTextCongressionalDistrict = "C1",
|
|
175
|
+
CongressionalDistrictPrefixCongressionalDistrict = "C2",
|
|
176
|
+
ResidentCommissionerDistrictAtLargeActualTextCongressionalDistrict = "C3",
|
|
177
|
+
DelegateDistrictAtLargeActualTextCongressionalDistrict = "C4",
|
|
178
|
+
NoRepresentativeActualTextCongressionalDistrict = "C5",
|
|
179
|
+
ConsolidatedGovernmentBalanceIncorporatedPlace = "CB",
|
|
180
|
+
ConsolidatedGovernmentSuffixConsolidatedCityEconomicCensusPlace = "CG",
|
|
181
|
+
CorporationSuffixIncorporatedPlace = "CN",
|
|
182
|
+
CommercialRegionSuffixCommercialRegion = "CR",
|
|
183
|
+
CensusTractPrefixCensusTract = "CT",
|
|
184
|
+
TribalBlockGroupPrefixTribalBlockGroup = "IB",
|
|
185
|
+
TribalCensusTractPrefixTribalCensusTract = "IT",
|
|
186
|
+
WardPrefixStateLegislativeDistrictUpperChamber = "L1",
|
|
187
|
+
SenatorialDistrictSuffixStateLegislativeDistrictUpperChamber = "L2",
|
|
188
|
+
AssemblyDistrictPrefixStateLegislativeDistrictLowerChamber = "L3",
|
|
189
|
+
GeneralAssemblyDistrictPrefixStateLegislativeDistrictLowerChamber = "L4",
|
|
190
|
+
StateLegislativeDistrictPrefixStateLegislativeDistrictLowerChamber = "L5",
|
|
191
|
+
StateLegislativeSubdistrictPrefixStateLegislativeDistrictLowerChamber = "L6",
|
|
192
|
+
DistrictStateLegislativeDistrictLowerChamberStateLegislativeDistrictUpperChamber = "L7",
|
|
193
|
+
StateHouseDistrictPrefixStateLegislativeDistrictLowerChamber = "LL",
|
|
194
|
+
StateSenateDistrictPrefixStateLegislativeDistrictUpperChamber = "LU",
|
|
195
|
+
CsaSuffixCombinedStatisticalArea = "M0",
|
|
196
|
+
MetroAreaSuffixMetropolitanAndMicropolitanStatisticalArea = "M1",
|
|
197
|
+
MicroAreaSuffixMetropolitanAndMicropolitanStatisticalArea = "M2",
|
|
198
|
+
MetroDivisionSuffixMetropolitanDivision = "M3",
|
|
199
|
+
CombinedNectaSuffixCombinedNewEnglandCityAndTownArea = "M4",
|
|
200
|
+
MetropolitanNectaSuffixNewEnglandCityAndTownMetropolitanAndMicropolitanStatisticalArea = "M5",
|
|
201
|
+
MicropolitanNectaSuffixNewEnglandCityAndTownMetropolitanAndMicropolitanStatisticalArea = "M6",
|
|
202
|
+
NectaDivisionSuffixNewEnglandCityAndTownDivision = "M7",
|
|
203
|
+
MetropolitanGovernmentBalanceEconomicCensusPlaceIncorporatedPlace = "MB",
|
|
204
|
+
MetropolitanGovernmentSuffixConsolidatedCityEconomicCensusPlaceIncorporatedPlace = "MG",
|
|
205
|
+
MetroGovernmentSuffixConsolidatedCity = "MT",
|
|
206
|
+
SuperPumaPrefixPublicUseMicrodataArea_1Area = "P1",
|
|
207
|
+
PumaPrefixPublicUseMicrodataArea_5Or_10Area = "P5",
|
|
208
|
+
AreaSuffixTribalSubdivision = "T1",
|
|
209
|
+
ChapterSuffixTribalSubdivision = "T2",
|
|
210
|
+
SegmentSuffixTribalSubdivision = "T3",
|
|
211
|
+
AdministrativeAreaSuffixTribalSubdivision = "TA",
|
|
212
|
+
AdditionSuffixTribalSubdivision = "TB",
|
|
213
|
+
CountyDistrictPrefixTribalSubdivision = "TC",
|
|
214
|
+
TazPrefixTrafficAnalysisZone = "TZ",
|
|
215
|
+
UnifiedGovernmentBalanceIncorporatedPlace = "UB",
|
|
216
|
+
UrbanCountySuffixEconomicCensusPlaceIncorporatedPlace = "UC",
|
|
217
|
+
UnifiedGovernmentSuffixConsolidatedCityEconomicCensusPlaceIncorporatedPlace = "UG",
|
|
218
|
+
VotingDistrictPrefixVotingDistrict = "V1",
|
|
219
|
+
VotingDistrictSuffixVotingDistrict = "V2",
|
|
220
|
+
Zcta3SuffixZipCodeTabulationAreaThreeDigit = "Z3",
|
|
221
|
+
Zcta5SuffixZipCodeTabulationAreaFiveDigit = "Z5",
|
|
222
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @copyright Sister Software.
|
|
3
|
+
* @license AGPL-3.0
|
|
4
|
+
* @author Teffen Ellis, et al.
|
|
5
|
+
*/
|
|
6
|
+
import type { TIGERClassCode } from "./class-code.js";
|
|
7
|
+
import type { TIGERFunctionalStatus } from "./functional-status.js";
|
|
8
|
+
import type { LegalStatisticalAreaDescription } from "./legal-statistical-area.js";
|
|
9
|
+
import type { AdminLevel1Code } from "./state.js";
|
|
10
|
+
/**
|
|
11
|
+
* @title TIGER Block Group
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export interface TIGERBlockGroup {
|
|
15
|
+
/**
|
|
16
|
+
* @title State FIPS Code
|
|
17
|
+
*/
|
|
18
|
+
STATEFP: AdminLevel1Code;
|
|
19
|
+
/**
|
|
20
|
+
* @title County FIPS Code
|
|
21
|
+
* @minLength 3
|
|
22
|
+
* @maxLength 3
|
|
23
|
+
* @pattern ^\d{3}$
|
|
24
|
+
*/
|
|
25
|
+
COUNTYFP: string;
|
|
26
|
+
/**
|
|
27
|
+
* @title County Subdivision FIPS Code
|
|
28
|
+
*
|
|
29
|
+
* @minLength 5
|
|
30
|
+
* @maxLength 5
|
|
31
|
+
* @pattern ^\d{5}$
|
|
32
|
+
*/
|
|
33
|
+
COUSUBFP: string;
|
|
34
|
+
/**
|
|
35
|
+
* @see {@link https://www.usgs.gov/us-board-on-geographic-names/domestic-names | USGS: Domestic Names}
|
|
36
|
+
* @title County Subdivision GNIS Code
|
|
37
|
+
*
|
|
38
|
+
* @minLength 8
|
|
39
|
+
* @maxLength 8
|
|
40
|
+
* @pattern ^\d{8}$
|
|
41
|
+
*/
|
|
42
|
+
COUSUBNS: string;
|
|
43
|
+
/**
|
|
44
|
+
* @title Block Group GEOID
|
|
45
|
+
*
|
|
46
|
+
* @minLength 10
|
|
47
|
+
* @maxLength 10
|
|
48
|
+
* @pattern ^\d{10}$
|
|
49
|
+
*/
|
|
50
|
+
GEOID: string;
|
|
51
|
+
/**
|
|
52
|
+
* Fully Qualified GEOID as used in CEDSCI and other systems.
|
|
53
|
+
*
|
|
54
|
+
* @title Fully Qualified Geographic Identifier
|
|
55
|
+
* @minLength 19
|
|
56
|
+
* @maxLength 19
|
|
57
|
+
* @pattern ^\d{19}$
|
|
58
|
+
*/
|
|
59
|
+
GEOIDFQ: string;
|
|
60
|
+
/**
|
|
61
|
+
* Current name and the translated legal/statistical area description code for county
|
|
62
|
+
* sub-division.
|
|
63
|
+
*
|
|
64
|
+
* @title Name/Legal Statistical Area Description
|
|
65
|
+
* @minLength 1
|
|
66
|
+
* @maxLength 100
|
|
67
|
+
*/
|
|
68
|
+
NAMELSAD: string;
|
|
69
|
+
/**
|
|
70
|
+
* Legal/Statistical Area Description.
|
|
71
|
+
*
|
|
72
|
+
* @title Legal/Statistical Area Description
|
|
73
|
+
*/
|
|
74
|
+
LSAD: LegalStatisticalAreaDescription;
|
|
75
|
+
/**
|
|
76
|
+
* Class Code.
|
|
77
|
+
*
|
|
78
|
+
* @title Class Code
|
|
79
|
+
*/
|
|
80
|
+
CLASSFP: TIGERClassCode;
|
|
81
|
+
/**
|
|
82
|
+
* MAF/TIGER Feature Class Code.
|
|
83
|
+
*
|
|
84
|
+
* @title MAF/TIGER Feature Class Code
|
|
85
|
+
*
|
|
86
|
+
* @minLength 5
|
|
87
|
+
* @maxLength 5
|
|
88
|
+
* @pattern ^[A-Z]\d{1}$
|
|
89
|
+
*/
|
|
90
|
+
MTFCC: TIGERClassCode;
|
|
91
|
+
/**
|
|
92
|
+
* Functional Status.
|
|
93
|
+
*
|
|
94
|
+
* @title Functional Status
|
|
95
|
+
* @minLength 1
|
|
96
|
+
* @maxLength 1
|
|
97
|
+
* @pattern ^[A-Z]$
|
|
98
|
+
*/
|
|
99
|
+
FUNCSTAT: TIGERFunctionalStatus;
|
|
100
|
+
/**
|
|
101
|
+
* L Land Area in square meters.
|
|
102
|
+
*
|
|
103
|
+
* @title Land Area
|
|
104
|
+
* @minimum 0
|
|
105
|
+
*/
|
|
106
|
+
ALAND: number;
|
|
107
|
+
/**
|
|
108
|
+
* Water Area in square meters.
|
|
109
|
+
*
|
|
110
|
+
* @title Water Area
|
|
111
|
+
* @minimum 0
|
|
112
|
+
*/
|
|
113
|
+
AWATER: number;
|
|
114
|
+
/**
|
|
115
|
+
* Latitude of the internal point.
|
|
116
|
+
*
|
|
117
|
+
* @title Internal Point Latitude
|
|
118
|
+
*/
|
|
119
|
+
INTPTLAT: string;
|
|
120
|
+
/**
|
|
121
|
+
* Longitude of the internal point.
|
|
122
|
+
*
|
|
123
|
+
* @title Internal Point Longitude
|
|
124
|
+
*/
|
|
125
|
+
INTPTLON: string;
|
|
126
|
+
/**
|
|
127
|
+
* Name of the block group.
|
|
128
|
+
*
|
|
129
|
+
* @title Name
|
|
130
|
+
* @minLength 1
|
|
131
|
+
* @maxLength 100
|
|
132
|
+
*/
|
|
133
|
+
NAME: string;
|
|
134
|
+
}
|
|
135
|
+
//# sourceMappingURL=block-group.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"block-group.d.ts","sourceRoot":"","sources":["../block-group.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAA;AACrD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,wBAAwB,CAAA;AACnE,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,6BAA6B,CAAA;AAClF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAEjD;;;GAGG;AACH,MAAM,WAAW,eAAe;IAC/B;;OAEG;IACH,OAAO,EAAE,eAAe,CAAA;IAExB;;;;;OAKG;IACH,QAAQ,EAAE,MAAM,CAAA;IAEhB;;;;;;OAMG;IACH,QAAQ,EAAE,MAAM,CAAA;IAEhB;;;;;;;OAOG;IACH,QAAQ,EAAE,MAAM,CAAA;IAEhB;;;;;;OAMG;IACH,KAAK,EAAE,MAAM,CAAA;IAEb;;;;;;;OAOG;IACH,OAAO,EAAE,MAAM,CAAA;IAEf;;;;;;;OAOG;IACH,QAAQ,EAAE,MAAM,CAAA;IAEhB;;;;OAIG;IACH,IAAI,EAAE,+BAA+B,CAAA;IAErC;;;;OAIG;IACH,OAAO,EAAE,cAAc,CAAA;IAEvB;;;;;;;;OAQG;IACH,KAAK,EAAE,cAAc,CAAA;IAErB;;;;;;;OAOG;IACH,QAAQ,EAAE,qBAAqB,CAAA;IAE/B;;;;;OAKG;IACH,KAAK,EAAE,MAAM,CAAA;IAEb;;;;;OAKG;IACH,MAAM,EAAE,MAAM,CAAA;IAEd;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAA;IAEhB;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAA;IAEhB;;;;;;OAMG;IACH,IAAI,EAAE,MAAM,CAAA;CACZ"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"block-group.js","sourceRoot":"","sources":["../block-group.ts"],"names":[],"mappings":"AAAA;;;;GAIG"}
|