@mailwoman/tiger 4.16.2 → 5.1.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/block-group.ts +2 -3
- package/class-code.ts +268 -318
- package/constants.ts +2 -4
- package/county-subdivision.ts +3 -4
- package/county.ts +2 -3
- package/files.ts +1 -0
- package/functional-status.ts +4 -6
- package/geoid.ts +20 -18
- package/legal-statistical-area.ts +4 -6
- package/out/block-group.d.ts +2 -3
- package/out/block-group.d.ts.map +1 -1
- package/out/class-code.d.ts +268 -318
- package/out/class-code.d.ts.map +1 -1
- package/out/class-code.js +268 -318
- package/out/class-code.js.map +1 -1
- package/out/constants.d.ts +2 -4
- package/out/constants.d.ts.map +1 -1
- package/out/county-subdivision.d.ts +3 -4
- package/out/county-subdivision.d.ts.map +1 -1
- package/out/county.d.ts +2 -3
- package/out/county.d.ts.map +1 -1
- package/out/county.js.map +1 -1
- package/out/files.d.ts.map +1 -1
- package/out/files.js.map +1 -1
- package/out/functional-status.d.ts +4 -6
- package/out/functional-status.d.ts.map +1 -1
- package/out/functional-status.js +4 -6
- package/out/functional-status.js.map +1 -1
- package/out/geoid.d.ts +15 -15
- package/out/geoid.d.ts.map +1 -1
- package/out/geoid.js +3 -4
- package/out/geoid.js.map +1 -1
- package/out/legal-statistical-area.d.ts +4 -6
- package/out/legal-statistical-area.d.ts.map +1 -1
- package/out/legal-statistical-area.js +4 -6
- package/out/legal-statistical-area.js.map +1 -1
- package/out/sdk/fetch.d.ts +3 -6
- package/out/sdk/fetch.d.ts.map +1 -1
- package/out/sdk/fetch.js +3 -4
- package/out/sdk/fetch.js.map +1 -1
- package/out/sdk/redistricting.d.ts +1 -2
- package/out/sdk/redistricting.d.ts.map +1 -1
- package/out/sdk/redistricting.js +3 -4
- package/out/sdk/redistricting.js.map +1 -1
- package/out/sdk/schema.d.ts +12 -12
- package/out/sdk/schema.js +9 -9
- package/out/sdk/state/block-operations.d.ts +1 -2
- package/out/sdk/state/block-operations.d.ts.map +1 -1
- package/out/sdk/state/block-operations.js +1 -2
- package/out/sdk/state/block-operations.js.map +1 -1
- package/out/state.d.ts +10 -12
- package/out/state.d.ts.map +1 -1
- package/out/state.js +8 -10
- package/out/state.js.map +1 -1
- package/out/tabulation-block.d.ts +2 -2
- package/out/tabulation-block.d.ts.map +1 -1
- package/out/tabulation-block.js.map +1 -1
- package/out/tract.d.ts +2 -2
- package/out/tract.d.ts.map +1 -1
- package/out/tract.js.map +1 -1
- package/out/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -18
- package/sdk/fetch.ts +21 -8
- package/sdk/redistricting.ts +14 -4
- package/sdk/schema.ts +12 -12
- package/sdk/state/block-operations.ts +1 -2
- package/state.ts +11 -12
- package/tabulation-block.ts +3 -2
- package/tract.ts +3 -2
package/out/class-code.d.ts
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* @author Teffen Ellis, et al.
|
|
5
5
|
*/
|
|
6
6
|
/**
|
|
7
|
-
* Defines the current class of a geographic entity. These codes can be found in the TIGER/Line
|
|
8
|
-
*
|
|
7
|
+
* Defines the current class of a geographic entity. These codes can be found in the TIGER/Line products, gazetteer
|
|
8
|
+
* files, and other products.
|
|
9
9
|
*
|
|
10
10
|
* @title MAF/TIGER Feature Class Code
|
|
11
11
|
*/
|
|
@@ -15,8 +15,8 @@ export declare enum TIGERClassCode {
|
|
|
15
15
|
*/
|
|
16
16
|
MountainPeakOrSummit = "C3022",
|
|
17
17
|
/**
|
|
18
|
-
* An area of dry or relatively dry land surrounded by water or low wetland. (including
|
|
19
|
-
*
|
|
18
|
+
* An area of dry or relatively dry land surrounded by water or low wetland. (including archipelago, atoll, cay,
|
|
19
|
+
* hammock, hummock, isla, isle, key, moku, and rock)
|
|
20
20
|
*/
|
|
21
21
|
Island = "C3023",
|
|
22
22
|
/**
|
|
@@ -24,15 +24,13 @@ export declare enum TIGERClassCode {
|
|
|
24
24
|
*/
|
|
25
25
|
Levee = "C3024",
|
|
26
26
|
/**
|
|
27
|
-
* A durable, permanent structure, extending into a body of water, built to protect a shoreline
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
* a groyne, groin, seawall, or bulwark.
|
|
27
|
+
* A durable, permanent structure, extending into a body of water, built to protect a shoreline from erosion, to form
|
|
28
|
+
* a protected coastal marina/harbor, or to create stable channels for navigation. Unlike piers and docks, water does
|
|
29
|
+
* not flow under it. Alternatively referred to as a groyne, groin, seawall, or bulwark.
|
|
31
30
|
*/
|
|
32
31
|
JettyBreakwater = "C3025",
|
|
33
32
|
/**
|
|
34
|
-
* An area from which commercial minerals are or were removed from the Earth; not including an
|
|
35
|
-
* oilfield or gas field.
|
|
33
|
+
* An area from which commercial minerals are or were removed from the Earth; not including an oilfield or gas field.
|
|
36
34
|
*/
|
|
37
35
|
QuarryOpenPitMine = "C3026",
|
|
38
36
|
/**
|
|
@@ -40,14 +38,13 @@ export declare enum TIGERClassCode {
|
|
|
40
38
|
*/
|
|
41
39
|
Dam = "C3027",
|
|
42
40
|
/**
|
|
43
|
-
* An expanded paved area at the end of a street used by vehicles for turning around. The
|
|
44
|
-
*
|
|
45
|
-
* cul-de-sac.
|
|
41
|
+
* An expanded paved area at the end of a street used by vehicles for turning around. The placement of addressed
|
|
42
|
+
* structures located along the street may wrap around the end of the cul-de-sac.
|
|
46
43
|
*/
|
|
47
44
|
CulDeSac = "C3061",
|
|
48
45
|
/**
|
|
49
|
-
* A circular intersection allowing for continuous movement of traffic at the meeting of roadways,
|
|
50
|
-
*
|
|
46
|
+
* A circular intersection allowing for continuous movement of traffic at the meeting of roadways, when the circle is
|
|
47
|
+
* represented as a point.
|
|
51
48
|
*/
|
|
52
49
|
TrafficCircle = "C3062",
|
|
53
50
|
/**
|
|
@@ -59,13 +56,12 @@ export declare enum TIGERClassCode {
|
|
|
59
56
|
*/
|
|
60
57
|
TollBooth = "C3067",
|
|
61
58
|
/**
|
|
62
|
-
* A manmade structure, higher than its diameter, generally used for observation, storage, or
|
|
63
|
-
* electronic transmission.
|
|
59
|
+
* A manmade structure, higher than its diameter, generally used for observation, storage, or electronic transmission.
|
|
64
60
|
*/
|
|
65
61
|
Tower = "C3071",
|
|
66
62
|
/**
|
|
67
|
-
* A manmade structure, higher than its diameter, used to transmit light and possibly sound
|
|
68
|
-
*
|
|
63
|
+
* A manmade structure, higher than its diameter, used to transmit light and possibly sound generally to aid in
|
|
64
|
+
* navigation.
|
|
69
65
|
*/
|
|
70
66
|
LighthouseBeacon = "C3074",
|
|
71
67
|
/**
|
|
@@ -85,75 +81,70 @@ export declare enum TIGERClassCode {
|
|
|
85
81
|
*/
|
|
86
82
|
MonumentMemorial = "C3078",
|
|
87
83
|
/**
|
|
88
|
-
* A locational marker or monument placed on or near a boundary line to preserve and identify the
|
|
89
|
-
*
|
|
84
|
+
* A locational marker or monument placed on or near a boundary line to preserve and identify the location of the
|
|
85
|
+
* boundary line on the ground.
|
|
90
86
|
*/
|
|
91
87
|
BoundaryMonumentPoint = "C3079",
|
|
92
88
|
/**
|
|
93
|
-
* A point on the ground whose position (horizontal or vertical) is known and can be used as a
|
|
94
|
-
*
|
|
89
|
+
* A point on the ground whose position (horizontal or vertical) is known and can be used as a base for additional
|
|
90
|
+
* survey work.
|
|
95
91
|
*/
|
|
96
92
|
SurveyControlPoint = "C3080",
|
|
97
93
|
/**
|
|
98
|
-
* A point that identifies the location and name of a locality (e.g., crossroad, community,
|
|
99
|
-
*
|
|
94
|
+
* A point that identifies the location and name of a locality (e.g., crossroad, community, populated place or locale)
|
|
95
|
+
* that usually does not have a formally established boundary.
|
|
100
96
|
*/
|
|
101
97
|
LocalityPoint = "C3081",
|
|
102
98
|
/**
|
|
103
|
-
* A point that serves as the core of an Alaska Native village and is used in defining Alaska
|
|
104
|
-
*
|
|
99
|
+
* A point that serves as the core of an Alaska Native village and is used in defining Alaska Native village
|
|
100
|
+
* statistical areas.
|
|
105
101
|
*/
|
|
106
102
|
AlaskaNativeVillageOfficialPoint = "C3085",
|
|
107
103
|
/**
|
|
108
|
-
* This feature represents sovereign states recognized by the U.S. Department of State. For Census
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
* sovereign states such as Canada and Mexico, but currently does not do so.
|
|
104
|
+
* This feature represents sovereign states recognized by the U.S. Department of State. For Census Bureau purposes,
|
|
105
|
+
* the area for which the decennial census is conducted, which is the United States, Puerto Rico, and the Island Areas
|
|
106
|
+
* (American Samoa, Guam, the Commonwealth of the Northern Mariana Islands, and the U.S. Virgin Islands). The feature
|
|
107
|
+
* may also include other sovereign states such as Canada and Mexico, but currently does not do so.
|
|
113
108
|
*/
|
|
114
109
|
Nation = "G1000",
|
|
115
110
|
/**
|
|
116
|
-
* A grouping of states and the District of Columbia for the presentation of census data. The
|
|
117
|
-
*
|
|
111
|
+
* A grouping of states and the District of Columbia for the presentation of census data. The United States is
|
|
112
|
+
* subdivided into four Census Regions—Northeast, South, Midwest, and West.
|
|
118
113
|
*/
|
|
119
114
|
CensusRegion = "G1100",
|
|
120
115
|
/**
|
|
121
|
-
* A grouping of states and the District of Columbia that is a subdivision of the four Census
|
|
122
|
-
* Regions.
|
|
116
|
+
* A grouping of states and the District of Columbia that is a subdivision of the four Census Regions.
|
|
123
117
|
*/
|
|
124
118
|
CensusDivision = "G1200",
|
|
125
119
|
/**
|
|
126
|
-
* A legally defined state- or federally recognized reservation and/or off-reservation trust land
|
|
127
|
-
*
|
|
120
|
+
* A legally defined state- or federally recognized reservation and/or off-reservation trust land entity (excluding
|
|
121
|
+
* statistical American Indian and Alaska Native areas).
|
|
128
122
|
*/
|
|
129
123
|
AmericanIndianArea = "G2100",
|
|
130
124
|
/**
|
|
131
|
-
* A legal area held in trust for the benefit of Native Hawaiians by the state of Hawaii, pursuant
|
|
132
|
-
*
|
|
125
|
+
* A legal area held in trust for the benefit of Native Hawaiians by the state of Hawaii, pursuant to the Hawaiian
|
|
126
|
+
* Homes Commission Act of 1920, as amended.
|
|
133
127
|
*/
|
|
134
128
|
HawaiianHomeLand = "G2120",
|
|
135
129
|
/**
|
|
136
|
-
* A statistical area that represents the more densely settled portion of Alaska Native villages
|
|
137
|
-
*
|
|
138
|
-
*
|
|
130
|
+
* A statistical area that represents the more densely settled portion of Alaska Native villages (ANVs), which
|
|
131
|
+
* constitute associations, bands, clans, communities, groups, tribes, or villages recognized pursuant to the Alaska
|
|
132
|
+
* Native Claims Settlement Act of 1971 (Public Law 92-203).
|
|
139
133
|
*/
|
|
140
134
|
AlaskaNativeVillageStatisticalArea = "G2130",
|
|
141
135
|
/**
|
|
142
|
-
* A statistical entity identified and delineated by the Census Bureau in consultation with
|
|
143
|
-
*
|
|
144
|
-
* reservation in Oklahoma.
|
|
136
|
+
* A statistical entity identified and delineated by the Census Bureau in consultation with federally recognized
|
|
137
|
+
* American Indian tribes that have no current reservation, but had a former reservation in Oklahoma.
|
|
145
138
|
*/
|
|
146
139
|
OklahomaTribalStatisticalArea = "G2140",
|
|
147
140
|
/**
|
|
148
|
-
* A statistical geographic entity identified and delineated for the Census Bureau by a
|
|
149
|
-
* state-
|
|
150
|
-
* have a reservation and/or lands in trust.
|
|
141
|
+
* A statistical geographic entity identified and delineated for the Census Bureau by a state-appointed liaison for a
|
|
142
|
+
* state-recognized American Indian tribe that does not currently have a reservation and/or lands in trust.
|
|
151
143
|
*/
|
|
152
144
|
StateDesignatedTribalStatisticalArea = "G2150",
|
|
153
145
|
/**
|
|
154
|
-
* A statistical geographic entity identified and delineated for the Census Bureau by a federally
|
|
155
|
-
*
|
|
156
|
-
* off-reservation trust land.
|
|
146
|
+
* A statistical geographic entity identified and delineated for the Census Bureau by a federally recognized American
|
|
147
|
+
* Indian tribe that does not currently have a reservation and/or off-reservation trust land.
|
|
157
148
|
*/
|
|
158
149
|
TribalDesignatedStatisticalArea = "G2160",
|
|
159
150
|
/**
|
|
@@ -161,212 +152,196 @@ export declare enum TIGERClassCode {
|
|
|
161
152
|
*/
|
|
162
153
|
AmericanIndianJointUseArea = "G2170",
|
|
163
154
|
/**
|
|
164
|
-
* Corporate entities with legal boundaries established to conduct both business and nonprofit
|
|
165
|
-
*
|
|
166
|
-
*
|
|
167
|
-
*
|
|
168
|
-
* excluded from any ANRC).
|
|
155
|
+
* Corporate entities with legal boundaries established to conduct both business and nonprofit affairs of Alaska
|
|
156
|
+
* Natives pursuant to the Alaska Native Claims Settlement Act of 1972 (Public Law 92-203). There are twelve
|
|
157
|
+
* geographically defined ANRCs and they are all within and cover most of the State of Alaska (the Annette Island
|
|
158
|
+
* Reserve—an American Indian reservation—is excluded from any ANRC).
|
|
169
159
|
*/
|
|
170
160
|
AlaskaNativeRegionalCorporation = "G2200",
|
|
171
161
|
/**
|
|
172
|
-
* Administrative subdivisions of federally recognized American Indian reservations,
|
|
173
|
-
*
|
|
174
|
-
*
|
|
175
|
-
*
|
|
176
|
-
* OTSAs.
|
|
162
|
+
* Administrative subdivisions of federally recognized American Indian reservations, off-reservation trust lands, or
|
|
163
|
+
* Oklahoma tribal statistical areas (OTSAs). These entities are internal units of self-government or administration
|
|
164
|
+
* that serve social, cultural, and/or economic purposes for the American Indians on the reservations, off-reservation
|
|
165
|
+
* trust lands, or OTSAs.
|
|
177
166
|
*/
|
|
178
167
|
TribalSubdivision = "G2300",
|
|
179
168
|
/**
|
|
180
|
-
* A relatively small and permanent statistical subdivision of a federally recognized American
|
|
181
|
-
*
|
|
182
|
-
*
|
|
169
|
+
* A relatively small and permanent statistical subdivision of a federally recognized American Indian reservation
|
|
170
|
+
* and/or off-reservation trust land, delineated by American Indian tribal participants or the Census Bureau for the
|
|
171
|
+
* purpose of presenting demographic data.
|
|
183
172
|
*/
|
|
184
173
|
TribalCensusTract = "G2400",
|
|
185
174
|
/**
|
|
186
|
-
* A cluster of census blocks within a single tribal census tract delineated by American Indian
|
|
187
|
-
*
|
|
175
|
+
* A cluster of census blocks within a single tribal census tract delineated by American Indian tribal participants or
|
|
176
|
+
* the Census Bureau for the purpose of presenting demographic data.
|
|
188
177
|
*/
|
|
189
178
|
TribalBlockGroup = "G2410",
|
|
190
179
|
/**
|
|
191
|
-
* A grouping of adjacent metropolitan and/or micropolitan statistical areas that have a degree of
|
|
192
|
-
*
|
|
180
|
+
* A grouping of adjacent metropolitan and/or micropolitan statistical areas that have a degree of economic and social
|
|
181
|
+
* integration, as measured by commuting.
|
|
193
182
|
*/
|
|
194
183
|
CombinedStatisticalArea = "G3100",
|
|
195
184
|
/**
|
|
196
|
-
* An area containing a substantial population nucleus together with adjacent communities having a
|
|
197
|
-
*
|
|
198
|
-
*
|
|
185
|
+
* An area containing a substantial population nucleus together with adjacent communities having a high degree of
|
|
186
|
+
* economic and social integration with that core, as measured by commuting. Each area is defined using whole counties
|
|
187
|
+
* and equivalents.
|
|
199
188
|
*/
|
|
200
189
|
MetropolitanMicropolitanStatisticalArea = "G3110",
|
|
201
190
|
/**
|
|
202
|
-
* A county or grouping of counties that is a subdivision of a Metropolitan Statistical Area
|
|
203
|
-
*
|
|
191
|
+
* A county or grouping of counties that is a subdivision of a Metropolitan Statistical Area containing an urbanized
|
|
192
|
+
* area with a population of 2.5 million or more.
|
|
204
193
|
*/
|
|
205
194
|
MetropolitanDivision = "G3120",
|
|
206
195
|
/**
|
|
207
|
-
* A grouping of adjacent New England city and town areas that have a degree of economic and
|
|
208
|
-
*
|
|
196
|
+
* A grouping of adjacent New England city and town areas that have a degree of economic and social integration, as
|
|
197
|
+
* measured by commuting.
|
|
209
198
|
*/
|
|
210
199
|
CombinedNewEnglandCityTownArea = "G3200",
|
|
211
200
|
/**
|
|
212
|
-
* An area containing a substantial population nucleus together with adjacent communities having a
|
|
213
|
-
*
|
|
214
|
-
*
|
|
201
|
+
* An area containing a substantial population nucleus together with adjacent communities having a high degree of
|
|
202
|
+
* economic and social integration with that core, as measured by commuting. Each area is defined using Minor Civil
|
|
203
|
+
* Divisions (MCDs) in New England.
|
|
215
204
|
*/
|
|
216
205
|
NewEnglandCityTownMetropolitanMicropolitanStatisticalArea = "G3210",
|
|
217
206
|
/**
|
|
218
|
-
* A grouping of cities and towns in New England that is a subdivision of a New England City and
|
|
219
|
-
*
|
|
207
|
+
* A grouping of cities and towns in New England that is a subdivision of a New England City and Town Area containing
|
|
208
|
+
* an urbanized area with a population of 2.5 million or more.
|
|
220
209
|
*/
|
|
221
210
|
NewEnglandCityTownDivision = "G3220",
|
|
222
211
|
/**
|
|
223
|
-
* For the 2020 Census, an urban area will comprise a densely developed core of census blocks that
|
|
224
|
-
*
|
|
225
|
-
*
|
|
226
|
-
*
|
|
227
|
-
*
|
|
228
|
-
* or at least 5,000 persons.
|
|
212
|
+
* For the 2020 Census, an urban area will comprise a densely developed core of census blocks that meet minimum
|
|
213
|
+
* housing unit density requirements, along with adjacent territory containing non-residential urban land uses as well
|
|
214
|
+
* as other lower density territory included to link outlying densely settled territory with the densely settled core.
|
|
215
|
+
* To qualify as an urban area, the territory identified according to the criteria must encompass at least 2,000
|
|
216
|
+
* housing units or at least 5,000 persons.
|
|
229
217
|
*/
|
|
230
218
|
UrbanArea = "G3500",
|
|
231
219
|
/**
|
|
232
|
-
* The primary governmental divisions of the United States. The District of Columbia is treated as
|
|
233
|
-
*
|
|
234
|
-
*
|
|
220
|
+
* The primary governmental divisions of the United States. The District of Columbia is treated as a statistical
|
|
221
|
+
* equivalent of a state for census purposes, as are Puerto Rico, American Samoa, Guam, the Commonwealth of the
|
|
222
|
+
* Northern Mariana Islands, and the U.S. Virgin Islands.
|
|
235
223
|
*/
|
|
236
224
|
StateEquivalentFeature = "G4000",
|
|
237
225
|
/**
|
|
238
|
-
* The primary division of a state or state equivalent area. The primary divisions of 48 states
|
|
239
|
-
*
|
|
240
|
-
*
|
|
241
|
-
* places that are not part of any county.
|
|
226
|
+
* The primary division of a state or state equivalent area. The primary divisions of 48 states are termed County, but
|
|
227
|
+
* other terms are used such as Borough in Alaska, Parish in Louisiana, and Municipio in Puerto Rico. This feature
|
|
228
|
+
* includes independent cities, which are incorporated places that are not part of any county.
|
|
242
229
|
*/
|
|
243
230
|
CountyEquivalentFeature = "G4020",
|
|
244
231
|
/**
|
|
245
|
-
* The primary divisions of counties and equivalent features for the reporting of Census Bureau
|
|
246
|
-
*
|
|
247
|
-
*
|
|
248
|
-
* incorporated places that are not part of any county subdivision.
|
|
232
|
+
* The primary divisions of counties and equivalent features for the reporting of Census Bureau data. The subtypes of
|
|
233
|
+
* this feature are Minor Civil Division, Census County Division/Census Subarea, and Unorganized Territory. This
|
|
234
|
+
* feature includes independent places, which are incorporated places that are not part of any county subdivision.
|
|
249
235
|
*/
|
|
250
236
|
CountySubdivision = "G4040",
|
|
251
237
|
/**
|
|
252
|
-
* A subdivision of the three major islands in the U.S. Virgin Islands (USVI). The estates have
|
|
253
|
-
*
|
|
254
|
-
*
|
|
238
|
+
* A subdivision of the three major islands in the U.S. Virgin Islands (USVI). The estates have legally defined
|
|
239
|
+
* boundaries and are much smaller in area than the Census Subdistricts (USVI county subdivisions), but do not
|
|
240
|
+
* necessarily nest within these districts.
|
|
255
241
|
*/
|
|
256
242
|
Estate = "G4050",
|
|
257
243
|
/**
|
|
258
|
-
* Legally defined divisions (subbarrios) of minor civil divisions (barrios-pueblo and barrios) in
|
|
259
|
-
* Puerto Rico.
|
|
244
|
+
* Legally defined divisions (subbarrios) of minor civil divisions (barrios-pueblo and barrios) in Puerto Rico.
|
|
260
245
|
*/
|
|
261
246
|
SubMinorCivilDivision = "G4060",
|
|
262
247
|
/**
|
|
263
|
-
* A legal entity incorporated under state law to provide general-purpose governmental services to
|
|
264
|
-
*
|
|
265
|
-
*
|
|
248
|
+
* A legal entity incorporated under state law to provide general-purpose governmental services to a concentration of
|
|
249
|
+
* population. Incorporated places are generally designated as a city, borough, municipality, town, village, or, in a
|
|
250
|
+
* few instances, have a different legal description.
|
|
266
251
|
*/
|
|
267
252
|
IncorporatedPlace = "G4110",
|
|
268
253
|
/**
|
|
269
|
-
* An incorporated place that has merged governmentally with a county or minor civil division, but
|
|
270
|
-
*
|
|
271
|
-
*
|
|
254
|
+
* An incorporated place that has merged governmentally with a county or minor civil division, but one or more of the
|
|
255
|
+
* incorporated places continues to function within the consolidation. It is a place that contains additional
|
|
256
|
+
* separately incorporated places.
|
|
272
257
|
*/
|
|
273
258
|
ConsolidatedCity = "G4120",
|
|
274
259
|
/**
|
|
275
|
-
* A statistical area that is defined for a named concentration of population and is the
|
|
276
|
-
*
|
|
260
|
+
* A statistical area that is defined for a named concentration of population and is the statistical counterpart of an
|
|
261
|
+
* incorporated place.
|
|
277
262
|
*/
|
|
278
263
|
CensusDesignatedPlace = "G4210",
|
|
279
264
|
/**
|
|
280
|
-
* The lowest level of geographic area for presentation of some types of Economic Census data. It
|
|
281
|
-
*
|
|
282
|
-
*
|
|
283
|
-
*
|
|
284
|
-
*
|
|
265
|
+
* The lowest level of geographic area for presentation of some types of Economic Census data. It includes
|
|
266
|
+
* incorporated places, consolidated cities, census designated places (CDPs), minor civil divisions (MCDs) in selected
|
|
267
|
+
* states, and balances of MCDs or counties. An incorporated place, CDP, MCD, or balance of MCD qualifies as an
|
|
268
|
+
* economic census place if it contains 2,500 or more residents, or 2,500 or more jobs, according to the most current
|
|
269
|
+
* data available.
|
|
285
270
|
*/
|
|
286
271
|
EconomicCensusPlace = "G4300",
|
|
287
272
|
/**
|
|
288
|
-
* Relatively permanent statistical subdivisions of a County or equivalent feature delineated by
|
|
289
|
-
*
|
|
273
|
+
* Relatively permanent statistical subdivisions of a County or equivalent feature delineated by local participants as
|
|
274
|
+
* part of the Census Bureau's Participant Statistical Areas Program.
|
|
290
275
|
*/
|
|
291
276
|
CensusTract = "G5020",
|
|
292
277
|
/**
|
|
293
|
-
* A cluster of census blocks having the same first digit of their four-digit identifying numbers
|
|
294
|
-
*
|
|
295
|
-
* blocks numbered from 3000 to 3999.
|
|
278
|
+
* A cluster of census blocks having the same first digit of their four-digit identifying numbers within a Census
|
|
279
|
+
* Tract. For example, block group 3 (BG 3) within a Census Tract includes all blocks numbered from 3000 to 3999.
|
|
296
280
|
*/
|
|
297
281
|
BlockGroup = "G5030",
|
|
298
282
|
/**
|
|
299
|
-
* The lowest-order census defined statistical area. It is an area, such as a city block, bounded
|
|
300
|
-
*
|
|
301
|
-
*
|
|
302
|
-
*
|
|
303
|
-
* (CQR), current, and tabulation census.
|
|
283
|
+
* The lowest-order census defined statistical area. It is an area, such as a city block, bounded primarily by
|
|
284
|
+
* physical features but sometimes by invisible city or property boundaries. A tabulation block boundary does not
|
|
285
|
+
* cross the boundary of any other geographic area for which the Census Bureau tabulates data. The subtypes of this
|
|
286
|
+
* feature are Count Question Resolution (CQR), current, and tabulation census.
|
|
304
287
|
*/
|
|
305
288
|
TabulationBlock = "G5040",
|
|
306
289
|
/**
|
|
307
|
-
* The 435 areas from which people are elected to the U.S. House of Representatives. Additional
|
|
308
|
-
*
|
|
309
|
-
*
|
|
310
|
-
* Congressional Districts, plus subsequent Congresses.
|
|
290
|
+
* The 435 areas from which people are elected to the U.S. House of Representatives. Additional equivalent features
|
|
291
|
+
* exist for state equivalents with nonvoting delegates or no representative. The subtypes of this feature are 111th,
|
|
292
|
+
* 113th, 114th, 115th, 116th, 117th, and 118th Congressional Districts, plus subsequent Congresses.
|
|
311
293
|
*/
|
|
312
294
|
CongressionalDistrict = "G5200",
|
|
313
295
|
/**
|
|
314
|
-
* Areas established by a state or equivalent government from which members are elected to the
|
|
315
|
-
*
|
|
316
|
-
*
|
|
317
|
-
*
|
|
318
|
-
* 2018, and so forth, with the year indicating the vintage of the district.
|
|
296
|
+
* Areas established by a state or equivalent government from which members are elected to the upper or unicameral
|
|
297
|
+
* chamber of a state governing body. The upper chamber is the senate in a bicameral legislature, and the unicameral
|
|
298
|
+
* case is a single house legislature (Nebraska). The subtypes of this feature are legislative session year, such as
|
|
299
|
+
* 2010, 2012, 2014, 2016, 2017, 2018, and so forth, with the year indicating the vintage of the district.
|
|
319
300
|
*/
|
|
320
301
|
StateLegislativeDistrictUpperChamber = "G5210",
|
|
321
302
|
/**
|
|
322
|
-
* Areas established by a state or equivalent government from which members are elected to the
|
|
323
|
-
*
|
|
324
|
-
*
|
|
325
|
-
*
|
|
326
|
-
* district.
|
|
303
|
+
* Areas established by a state or equivalent government from which members are elected to the lower chamber of a
|
|
304
|
+
* state governing body. The lower chamber is the House of Representatives in a bicameral legislature. The subtypes of
|
|
305
|
+
* this feature are legislative session year, such as 2010, 2012, 2014, 2016, 2017, 2018, and so forth, with the year
|
|
306
|
+
* indicating the vintage of the district.
|
|
327
307
|
*/
|
|
328
308
|
StateLegislativeDistrictLowerChamber = "G5220",
|
|
329
309
|
/**
|
|
330
|
-
* The generic name for the geographic features, such as precincts, wards, and election districts,
|
|
331
|
-
*
|
|
310
|
+
* The generic name for the geographic features, such as precincts, wards, and election districts, established by
|
|
311
|
+
* state, local, and tribal governments for the purpose of conducting elections.
|
|
332
312
|
*/
|
|
333
313
|
VotingDistrict = "G5240",
|
|
334
314
|
/**
|
|
335
|
-
* A geographic area within which officials provide public elementary grade-level educational
|
|
336
|
-
* services for residents.
|
|
315
|
+
* A geographic area within which officials provide public elementary grade-level educational services for residents.
|
|
337
316
|
*/
|
|
338
317
|
ElementarySchoolDistrict = "G5400",
|
|
339
318
|
/**
|
|
340
|
-
* A geographic area within which officials provide public secondary grade-level educational
|
|
341
|
-
* services for residents.
|
|
319
|
+
* A geographic area within which officials provide public secondary grade-level educational services for residents.
|
|
342
320
|
*/
|
|
343
321
|
SecondarySchoolDistrict = "G5410",
|
|
344
322
|
/**
|
|
345
|
-
* A geographic area within which officials provide public educational services for all grade
|
|
346
|
-
* levels for residents.
|
|
323
|
+
* A geographic area within which officials provide public educational services for all grade levels for residents.
|
|
347
324
|
*/
|
|
348
325
|
UnifiedSchoolDistrict = "G5420",
|
|
349
326
|
/**
|
|
350
|
-
* Statistical geographic areas defined for the tabulation and dissemination of American Community
|
|
351
|
-
*
|
|
352
|
-
*
|
|
353
|
-
*
|
|
354
|
-
* Islands.
|
|
327
|
+
* Statistical geographic areas defined for the tabulation and dissemination of American Community Survey (ACS) and
|
|
328
|
+
* Puerto Rico Community Survey, Public Use Microdata Sample (PUMS) data, as well as ACS period estimates, and
|
|
329
|
+
* decennial census data. Nesting within states or equivalent entities, PUMAs cover the entirety of the United States,
|
|
330
|
+
* Puerto Rico, Guam, and the U.S. Virgin Islands.
|
|
355
331
|
*/
|
|
356
332
|
PublicUseMicrodataArea = "G6120",
|
|
357
333
|
/**
|
|
358
|
-
* An area defined under state authority to manage urbanization that the U.S. Census Bureau
|
|
359
|
-
*
|
|
334
|
+
* An area defined under state authority to manage urbanization that the U.S. Census Bureau includes in its products
|
|
335
|
+
* in agreement with an individual state.
|
|
360
336
|
*/
|
|
361
337
|
UrbanGrowthArea = "G6330",
|
|
362
338
|
/**
|
|
363
|
-
* An approximate statistical-area representation of a U.S. Postal Service (USPS) 5-digit ZIP Code
|
|
364
|
-
* service area.
|
|
339
|
+
* An approximate statistical-area representation of a U.S. Postal Service (USPS) 5-digit ZIP Code service area.
|
|
365
340
|
*/
|
|
366
341
|
ZIPCodeTabulationArea = "G6350",
|
|
367
342
|
/**
|
|
368
|
-
* A grouping of municipios (county equivalents) defined by Puerto Rico officials for the purpose
|
|
369
|
-
*
|
|
343
|
+
* A grouping of municipios (county equivalents) defined by Puerto Rico officials for the purpose of presenting
|
|
344
|
+
* economic census statistical data.
|
|
370
345
|
*/
|
|
371
346
|
PlanningRegion = "G6400",
|
|
372
347
|
/**
|
|
@@ -394,14 +369,13 @@ export declare enum TIGERClassCode {
|
|
|
394
369
|
*/
|
|
395
370
|
OceanSea = "H2053",
|
|
396
371
|
/**
|
|
397
|
-
* A body of ice moving outward and down slope from an area of accumulation; an area of relatively
|
|
398
|
-
*
|
|
399
|
-
* and ice patch]
|
|
372
|
+
* A body of ice moving outward and down slope from an area of accumulation; an area of relatively permanent snow or
|
|
373
|
+
* ice on the top or side of a mountain or mountainous area. [includes ice field and ice patch]
|
|
400
374
|
*/
|
|
401
375
|
Glacier = "H2081",
|
|
402
376
|
/**
|
|
403
|
-
* A natural flowing waterway. [includes anabranch, awawa, branch, brook, creek, distributary,
|
|
404
|
-
*
|
|
377
|
+
* A natural flowing waterway. [includes anabranch, awawa, branch, brook, creek, distributary, fork, kill, pup, rio,
|
|
378
|
+
* and run]
|
|
405
379
|
*/
|
|
406
380
|
StreamRiver = "H3010",
|
|
407
381
|
/**
|
|
@@ -409,8 +383,8 @@ export declare enum TIGERClassCode {
|
|
|
409
383
|
*/
|
|
410
384
|
BraidedStream = "H3013",
|
|
411
385
|
/**
|
|
412
|
-
* An artificial waterway constructed to transport water, to irrigate or drain land, to connect
|
|
413
|
-
*
|
|
386
|
+
* An artificial waterway constructed to transport water, to irrigate or drain land, to connect two or more bodies of
|
|
387
|
+
* water, or to serve as a waterway for watercraft. [includes lateral]
|
|
414
388
|
*/
|
|
415
389
|
CanalDitchAqueduct = "H3020",
|
|
416
390
|
/**
|
|
@@ -418,18 +392,16 @@ export declare enum TIGERClassCode {
|
|
|
418
392
|
*/
|
|
419
393
|
ApartmentBuildingComplex = "K1121",
|
|
420
394
|
/**
|
|
421
|
-
* An area in which parking space for house trailers is rented, usually providing utilities and
|
|
422
|
-
* services.
|
|
395
|
+
* An area in which parking space for house trailers is rented, usually providing utilities and services.
|
|
423
396
|
*/
|
|
424
397
|
TrailerCourtMobileHomePark = "K1223",
|
|
425
398
|
/**
|
|
426
|
-
* A point or area in which the population of military or merchant marine vessels at sea are
|
|
427
|
-
*
|
|
399
|
+
* A point or area in which the population of military or merchant marine vessels at sea are assigned, usually being
|
|
400
|
+
* at or near the home port pier.
|
|
428
401
|
*/
|
|
429
402
|
CrewOfVesselLocation = "K1225",
|
|
430
403
|
/**
|
|
431
|
-
* A facility providing housing for a number of persons employed as semi-permanent or seasonal
|
|
432
|
-
* laborers.
|
|
404
|
+
* A facility providing housing for a number of persons employed as semi-permanent or seasonal laborers.
|
|
433
405
|
*/
|
|
434
406
|
HousingFacilityDormitoryForWorkers = "K1226",
|
|
435
407
|
/**
|
|
@@ -437,18 +409,17 @@ export declare enum TIGERClassCode {
|
|
|
437
409
|
*/
|
|
438
410
|
HotelMotelResortSpaHostelYMCAOrYWCA = "K1227",
|
|
439
411
|
/**
|
|
440
|
-
* An area used for setting up mobile temporary living quarters (camp) or holding a camp meeting,
|
|
441
|
-
*
|
|
412
|
+
* An area used for setting up mobile temporary living quarters (camp) or holding a camp meeting, sometimes providing
|
|
413
|
+
* utilities and other amenities.
|
|
442
414
|
*/
|
|
443
415
|
Campground = "K1228",
|
|
444
416
|
/**
|
|
445
|
-
* A facility providing low-cost or free living quarters established by a welfare or educational
|
|
446
|
-
*
|
|
417
|
+
* A facility providing low-cost or free living quarters established by a welfare or educational organization for the
|
|
418
|
+
* needy people of a district.
|
|
447
419
|
*/
|
|
448
420
|
ShelterMission = "K1229",
|
|
449
421
|
/**
|
|
450
|
-
* A facility where the sick or injured may receive medical or surgical attention. [including
|
|
451
|
-
* infirmary]
|
|
422
|
+
* A facility where the sick or injured may receive medical or surgical attention. [including infirmary]
|
|
452
423
|
*/
|
|
453
424
|
HospitalHospiceUrgentCareFacility = "K1231",
|
|
454
425
|
/**
|
|
@@ -456,23 +427,23 @@ export declare enum TIGERClassCode {
|
|
|
456
427
|
*/
|
|
457
428
|
NursingHomeRetirementHomeHomeForTheAged = "K1233",
|
|
458
429
|
/**
|
|
459
|
-
* A facility (correctional or non-correctional) where groups of juveniles reside; this includes
|
|
460
|
-
*
|
|
430
|
+
* A facility (correctional or non-correctional) where groups of juveniles reside; this includes training schools,
|
|
431
|
+
* detention centers, residential treatment centers and orphanages.
|
|
461
432
|
*/
|
|
462
433
|
JuvenileInstitution = "K1235",
|
|
463
434
|
/**
|
|
464
|
-
* A facility that serves as a place for the confinement of adult persons in lawful detention,
|
|
465
|
-
*
|
|
435
|
+
* A facility that serves as a place for the confinement of adult persons in lawful detention, administered by a local
|
|
436
|
+
* (tribal, county, municipal, etc.) government.
|
|
466
437
|
*/
|
|
467
438
|
LocalJailDetentionCenter = "K1236",
|
|
468
439
|
/**
|
|
469
|
-
* A facility that serves as a place for the confinement of adult persons in lawful detention,
|
|
470
|
-
*
|
|
440
|
+
* A facility that serves as a place for the confinement of adult persons in lawful detention, administered by the
|
|
441
|
+
* federal government or a state government.
|
|
471
442
|
*/
|
|
472
443
|
FederalPenitentiaryStatePrisonPrisonFarm = "K1237",
|
|
473
444
|
/**
|
|
474
|
-
* A facility that serves as a place for the confinement of adult persons in lawful detention, not
|
|
475
|
-
*
|
|
445
|
+
* A facility that serves as a place for the confinement of adult persons in lawful detention, not elsewhere
|
|
446
|
+
* classified or administered by a government of unknown jurisdiction.
|
|
476
447
|
*/
|
|
477
448
|
OtherCorrectionalInstitution = "K1238",
|
|
478
449
|
/**
|
|
@@ -484,9 +455,8 @@ export declare enum TIGERClassCode {
|
|
|
484
455
|
*/
|
|
485
456
|
GovernmentalWorkplaces = "K2100",
|
|
486
457
|
/**
|
|
487
|
-
* An area owned and/or occupied by the Department of Defense for use by a branch of the armed
|
|
488
|
-
*
|
|
489
|
-
* the use of the National Guard.
|
|
458
|
+
* An area owned and/or occupied by the Department of Defense for use by a branch of the armed forces (such as the
|
|
459
|
+
* Army, Navy, Air Force, Marines, or Coast Guard), or a state owned area for the use of the National Guard.
|
|
490
460
|
*/
|
|
491
461
|
MilitaryInstallation = "K2110",
|
|
492
462
|
/**
|
|
@@ -494,13 +464,13 @@ export declare enum TIGERClassCode {
|
|
|
494
464
|
*/
|
|
495
465
|
CommunityCenter = "K2146",
|
|
496
466
|
/**
|
|
497
|
-
* A place used by members of government (either federal, state, local, or tribal) for
|
|
498
|
-
*
|
|
467
|
+
* A place used by members of government (either federal, state, local, or tribal) for administration and public
|
|
468
|
+
* business.
|
|
499
469
|
*/
|
|
500
470
|
GovernmentCenter = "K2165",
|
|
501
471
|
/**
|
|
502
|
-
* An exhibition hall or conference center with enough open space to host public and private
|
|
503
|
-
*
|
|
472
|
+
* An exhibition hall or conference center with enough open space to host public and private business and social
|
|
473
|
+
* events.
|
|
504
474
|
*/
|
|
505
475
|
ConventionCenter = "K2167",
|
|
506
476
|
/**
|
|
@@ -508,59 +478,57 @@ export declare enum TIGERClassCode {
|
|
|
508
478
|
*/
|
|
509
479
|
Park = "K2180",
|
|
510
480
|
/**
|
|
511
|
-
* Land under the jurisdiction of the National Park Service, including National Parks, most
|
|
512
|
-
*
|
|
481
|
+
* Land under the jurisdiction of the National Park Service, including National Parks, most National Monuments, and
|
|
482
|
+
* certain other lands.
|
|
513
483
|
*/
|
|
514
484
|
NationalParkServiceLand = "K2181",
|
|
515
485
|
/**
|
|
516
|
-
* Land under the jurisdiction of the U.S. Forest Service or other federal agency, excluding
|
|
517
|
-
*
|
|
486
|
+
* Land under the jurisdiction of the U.S. Forest Service or other federal agency, excluding National Park Service
|
|
487
|
+
* land.
|
|
518
488
|
*/
|
|
519
489
|
NationalForestOtherFederalLand = "K2182",
|
|
520
490
|
/**
|
|
521
|
-
* A place or area set aside for recreation or preservation of a cultural or natural resource and
|
|
522
|
-
*
|
|
491
|
+
* A place or area set aside for recreation or preservation of a cultural or natural resource and under the
|
|
492
|
+
* administration of an American Indian tribe.
|
|
523
493
|
*/
|
|
524
494
|
TribalParkForestRecreationArea = "K2183",
|
|
525
495
|
/**
|
|
526
|
-
* A place or area set aside for recreation or preservation of a cultural or natural resource and
|
|
527
|
-
*
|
|
496
|
+
* A place or area set aside for recreation or preservation of a cultural or natural resource and under the
|
|
497
|
+
* administration of a state government.
|
|
528
498
|
*/
|
|
529
499
|
StateParkForestRecreationArea = "K2184",
|
|
530
500
|
/**
|
|
531
|
-
* A place or area set aside for recreation or preservation of a cultural or natural resource and
|
|
532
|
-
*
|
|
501
|
+
* A place or area set aside for recreation or preservation of a cultural or natural resource and under the
|
|
502
|
+
* administration of a regional government.
|
|
533
503
|
*/
|
|
534
504
|
RegionalParkForestRecreationArea = "K2185",
|
|
535
505
|
/**
|
|
536
|
-
* A place or area set aside for recreation or preservation of a cultural or natural resource and
|
|
537
|
-
*
|
|
506
|
+
* A place or area set aside for recreation or preservation of a cultural or natural resource and under the
|
|
507
|
+
* administration of a county government.
|
|
538
508
|
*/
|
|
539
509
|
CountyParkForestRecreationArea = "K2186",
|
|
540
510
|
/**
|
|
541
|
-
* A place or area set aside for recreation or preservation of a cultural or natural resource and
|
|
542
|
-
*
|
|
511
|
+
* A place or area set aside for recreation or preservation of a cultural or natural resource and under the
|
|
512
|
+
* administration of a minor civil division (town/township) government.
|
|
543
513
|
*/
|
|
544
514
|
CountySubdivisionParkForestRecreationArea = "K2187",
|
|
545
515
|
/**
|
|
546
|
-
* A place or area set aside for recreation or preservation of a cultural or natural resource and
|
|
547
|
-
*
|
|
516
|
+
* A place or area set aside for recreation or preservation of a cultural or natural resource and under the
|
|
517
|
+
* administration of a municipal government.
|
|
548
518
|
*/
|
|
549
519
|
IncorporatedPlaceParkForestRecreationArea = "K2188",
|
|
550
520
|
/**
|
|
551
|
-
* A privately owned place or area set aside for recreation or preservation of a cultural or
|
|
552
|
-
* natural resource.
|
|
521
|
+
* A privately owned place or area set aside for recreation or preservation of a cultural or natural resource.
|
|
553
522
|
*/
|
|
554
523
|
PrivateParkForestRecreationArea = "K2189",
|
|
555
524
|
/**
|
|
556
|
-
* A place or area set aside for recreation or preservation of a cultural or natural resource and
|
|
557
|
-
*
|
|
558
|
-
* authority or commission.
|
|
525
|
+
* A place or area set aside for recreation or preservation of a cultural or natural resource and under the
|
|
526
|
+
* administration of some other type of government or agency such as an independent park authority or commission.
|
|
559
527
|
*/
|
|
560
528
|
OtherParkForestRecreationArea = "K2190",
|
|
561
529
|
/**
|
|
562
|
-
* An official facility of the U.S. Postal Service used for processing and distributing mail and
|
|
563
|
-
*
|
|
530
|
+
* An official facility of the U.S. Postal Service used for processing and distributing mail and other postal
|
|
531
|
+
* material.
|
|
564
532
|
*/
|
|
565
533
|
PostOffice = "K2191",
|
|
566
534
|
/**
|
|
@@ -572,8 +540,7 @@ export declare enum TIGERClassCode {
|
|
|
572
540
|
*/
|
|
573
541
|
PoliceStation = "K2194",
|
|
574
542
|
/**
|
|
575
|
-
* A facility in which literary, musical, artistic, or reference materials are kept for public
|
|
576
|
-
* use.
|
|
543
|
+
* A facility in which literary, musical, artistic, or reference materials are kept for public use.
|
|
577
544
|
*/
|
|
578
545
|
Library = "K2195",
|
|
579
546
|
/**
|
|
@@ -589,13 +556,12 @@ export declare enum TIGERClassCode {
|
|
|
589
556
|
*/
|
|
590
557
|
ShoppingCenterMajorRetailCenter = "K2361",
|
|
591
558
|
/**
|
|
592
|
-
* One or more manufacturing establishments within an area zoned for fabrication, construction, or
|
|
593
|
-
*
|
|
559
|
+
* One or more manufacturing establishments within an area zoned for fabrication, construction, or other similar
|
|
560
|
+
* trades.
|
|
594
561
|
*/
|
|
595
562
|
IndustrialBuildingIndustrialPark = "K2362",
|
|
596
563
|
/**
|
|
597
|
-
* One or more structures containing employees performing business, clerical, or professional
|
|
598
|
-
* services.
|
|
564
|
+
* One or more structures containing employees performing business, clerical, or professional services.
|
|
599
565
|
*/
|
|
600
566
|
OfficeBuildingOfficePark = "K2363",
|
|
601
567
|
/**
|
|
@@ -607,9 +573,8 @@ export declare enum TIGERClassCode {
|
|
|
607
573
|
*/
|
|
608
574
|
OtherEmploymentCenter = "K2366",
|
|
609
575
|
/**
|
|
610
|
-
* A facility where one or more modes of transportation can be accessed by people or for the
|
|
611
|
-
*
|
|
612
|
-
* station, airport and truck warehouse.
|
|
576
|
+
* A facility where one or more modes of transportation can be accessed by people or for the shipment of goods;
|
|
577
|
+
* examples of such a facility include marine terminal, bus station, train station, airport and truck warehouse.
|
|
613
578
|
*/
|
|
614
579
|
TransportationTerminal = "K2400",
|
|
615
580
|
/**
|
|
@@ -617,43 +582,40 @@ export declare enum TIGERClassCode {
|
|
|
617
582
|
*/
|
|
618
583
|
Marina = "K2424",
|
|
619
584
|
/**
|
|
620
|
-
* A platform built out from the shore into the water and supported by piles. This platform may
|
|
621
|
-
*
|
|
585
|
+
* A platform built out from the shore into the water and supported by piles. This platform may provide access to
|
|
586
|
+
* ships and boats, or it may be used for recreational purposes.
|
|
622
587
|
*/
|
|
623
588
|
PierDock = "K2432",
|
|
624
589
|
/**
|
|
625
|
-
* A manmade facility maintained for the use of aircraft. [including airstrip, landing field, and
|
|
626
|
-
* landing strip]
|
|
590
|
+
* A manmade facility maintained for the use of aircraft. [including airstrip, landing field, and landing strip]
|
|
627
591
|
*/
|
|
628
592
|
AirportAirfield = "K2451",
|
|
629
593
|
/**
|
|
630
|
-
* A place where travelers can board and exit rail transit lines, including associated ticketing,
|
|
631
|
-
*
|
|
594
|
+
* A place where travelers can board and exit rail transit lines, including associated ticketing, freight, and other
|
|
595
|
+
* commercial offices.
|
|
632
596
|
*/
|
|
633
597
|
TrainStationTrolleyMassTransitRailStation = "K2452",
|
|
634
598
|
/**
|
|
635
|
-
* A place where travelers can board and exit mass motor vehicle transit, including associated
|
|
636
|
-
*
|
|
599
|
+
* A place where travelers can board and exit mass motor vehicle transit, including associated ticketing, freight, and
|
|
600
|
+
* other commercial offices.
|
|
637
601
|
*/
|
|
638
602
|
BusTerminal = "K2453",
|
|
639
603
|
/**
|
|
640
|
-
* A place where travelers can board and exit water transit or where cargo is handled, including
|
|
641
|
-
*
|
|
604
|
+
* A place where travelers can board and exit water transit or where cargo is handled, including associated ticketing,
|
|
605
|
+
* freight, and other commercial offices.
|
|
642
606
|
*/
|
|
643
607
|
MarineTerminal = "K2454",
|
|
644
608
|
/**
|
|
645
|
-
* A place where an airplane equipped with floats for landing on or taking off from a body of
|
|
646
|
-
*
|
|
609
|
+
* A place where an airplane equipped with floats for landing on or taking off from a body of water can debark and
|
|
610
|
+
* load.
|
|
647
611
|
*/
|
|
648
612
|
SeaplaneAnchorage = "K2455",
|
|
649
613
|
/**
|
|
650
|
-
* The area of an airport adjusted to include whole tabulation blocks used for the delineation of
|
|
651
|
-
* urban areas.
|
|
614
|
+
* The area of an airport adjusted to include whole tabulation blocks used for the delineation of urban areas.
|
|
652
615
|
*/
|
|
653
616
|
AirportStatisticalRepresentation = "K2457",
|
|
654
617
|
/**
|
|
655
|
-
* A fairly level and usually paved expanse used by airplanes for taking off and landing at an
|
|
656
|
-
* airport.
|
|
618
|
+
* A fairly level and usually paved expanse used by airplanes for taking off and landing at an airport.
|
|
657
619
|
*/
|
|
658
620
|
RunwayTaxiway = "K2459",
|
|
659
621
|
/**
|
|
@@ -669,8 +631,8 @@ export declare enum TIGERClassCode {
|
|
|
669
631
|
*/
|
|
670
632
|
SchoolAcademy = "K2543",
|
|
671
633
|
/**
|
|
672
|
-
* An attraction of historical, cultural, educational or other interest that provides information
|
|
673
|
-
*
|
|
634
|
+
* An attraction of historical, cultural, educational or other interest that provides information or displays
|
|
635
|
+
* artifacts.
|
|
674
636
|
*/
|
|
675
637
|
MuseumVisitorCenterCulturalCenterTouristAttraction = "K2545",
|
|
676
638
|
/**
|
|
@@ -678,9 +640,8 @@ export declare enum TIGERClassCode {
|
|
|
678
640
|
*/
|
|
679
641
|
GolfCourse = "K2561",
|
|
680
642
|
/**
|
|
681
|
-
* A facility that offers entertainment, performances or sporting events. Examples include arena,
|
|
682
|
-
*
|
|
683
|
-
* range.
|
|
643
|
+
* A facility that offers entertainment, performances or sporting events. Examples include arena, auditorium, theater,
|
|
644
|
+
* stadium, coliseum, race course, theme park, fairgrounds and shooting range.
|
|
684
645
|
*/
|
|
685
646
|
AmusementCenter = "K2564",
|
|
686
647
|
/**
|
|
@@ -688,19 +649,18 @@ export declare enum TIGERClassCode {
|
|
|
688
649
|
*/
|
|
689
650
|
Cemetery = "K2582",
|
|
690
651
|
/**
|
|
691
|
-
* A facility in which terrestrial and/or marine animals are confined within enclosures and
|
|
692
|
-
*
|
|
652
|
+
* A facility in which terrestrial and/or marine animals are confined within enclosures and displayed to the public
|
|
653
|
+
* for educational, preservation, and research purposes.
|
|
693
654
|
*/
|
|
694
655
|
Zoo = "K2586",
|
|
695
656
|
/**
|
|
696
|
-
* A sanctified place or structure where people gather for religious worship; examples include
|
|
697
|
-
*
|
|
657
|
+
* A sanctified place or structure where people gather for religious worship; examples include church, synagogue,
|
|
658
|
+
* temple, and mosque.
|
|
698
659
|
*/
|
|
699
660
|
PlaceOfWorship = "K3544",
|
|
700
661
|
/**
|
|
701
|
-
* A long tubular conduit or series of pipes, often underground, with pumps and valves for flow
|
|
702
|
-
*
|
|
703
|
-
* distances.
|
|
662
|
+
* A long tubular conduit or series of pipes, often underground, with pumps and valves for flow control, used to
|
|
663
|
+
* transport fluid (e.g., crude oil, natural gas), especially over great distances.
|
|
704
664
|
*/
|
|
705
665
|
Pipeline = "L4010",
|
|
706
666
|
/**
|
|
@@ -708,13 +668,13 @@ export declare enum TIGERClassCode {
|
|
|
708
668
|
*/
|
|
709
669
|
Powerline = "L4020",
|
|
710
670
|
/**
|
|
711
|
-
* A conveyance that transports passengers or freight in carriers suspended from cables and
|
|
712
|
-
*
|
|
671
|
+
* A conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of
|
|
672
|
+
* towers.
|
|
713
673
|
*/
|
|
714
674
|
AerialTramwaySkiLift = "L4031",
|
|
715
675
|
/**
|
|
716
|
-
* A man-made barrier enclosing or bordering a field, yard, etc., usually made of posts and wire
|
|
717
|
-
*
|
|
676
|
+
* A man-made barrier enclosing or bordering a field, yard, etc., usually made of posts and wire or wood, used to
|
|
677
|
+
* prevent entrance, to confine, or to mark a boundary.
|
|
718
678
|
*/
|
|
719
679
|
FenceLine = "L4110",
|
|
720
680
|
/**
|
|
@@ -722,103 +682,94 @@ export declare enum TIGERClassCode {
|
|
|
722
682
|
*/
|
|
723
683
|
RidgeLine = "L4121",
|
|
724
684
|
/**
|
|
725
|
-
* A very steep or vertical slope. [including bluff, crag, head, headland, nose, palisades,
|
|
726
|
-
*
|
|
685
|
+
* A very steep or vertical slope. [including bluff, crag, head, headland, nose, palisades, precipice, promontory,
|
|
686
|
+
* rim, and rimrock]
|
|
727
687
|
*/
|
|
728
688
|
CliffEscarpment = "L4125",
|
|
729
689
|
/**
|
|
730
|
-
* A line defined as beginning at one location point and ending at another, where each of these
|
|
731
|
-
*
|
|
732
|
-
*
|
|
733
|
-
* feature.
|
|
690
|
+
* A line defined as beginning at one location point and ending at another, where each of these points is usually in
|
|
691
|
+
* sight of the other and no structures are in proximity to the line. This includes straight-line, nonvisible,
|
|
692
|
+
* 180-degree extensions off the ends of a terminating linear feature.
|
|
734
693
|
*/
|
|
735
694
|
PointToPointLine = "L4130",
|
|
736
695
|
/**
|
|
737
|
-
* A cadastral boundary line separating two distinct real property parcels or a Public Land Survey
|
|
738
|
-
*
|
|
696
|
+
* A cadastral boundary line separating two distinct real property parcels or a Public Land Survey System or
|
|
697
|
+
* equivalent survey line.
|
|
739
698
|
*/
|
|
740
699
|
PropertyParcelLine = "L4140",
|
|
741
700
|
/**
|
|
742
|
-
* The line that separates either land or Inland water from Coastal, Territorial or Great Lakes
|
|
743
|
-
*
|
|
744
|
-
*
|
|
745
|
-
*
|
|
746
|
-
* water represents the Coastline.
|
|
701
|
+
* The line that separates either land or Inland water from Coastal, Territorial or Great Lakes water. Where land
|
|
702
|
+
* directly borders Coastal, Territorial or Great Lakes water, the shoreline represents the Coastline. Where Inland
|
|
703
|
+
* water (such as a river) flows into Coastal, Territorial or Great Lakes water, the closure line separating the
|
|
704
|
+
* Inland water from the other class of water represents the Coastline.
|
|
747
705
|
*/
|
|
748
706
|
Coastline = "L4150",
|
|
749
707
|
/**
|
|
750
|
-
* A nonvisible feature defining the route used to carry or convey people or cargo back and forth
|
|
751
|
-
*
|
|
708
|
+
* A nonvisible feature defining the route used to carry or convey people or cargo back and forth over a waterbody in
|
|
709
|
+
* a boat.
|
|
752
710
|
*/
|
|
753
711
|
FerryCrossing = "L4165",
|
|
754
712
|
/**
|
|
755
|
-
* A legal/statistical boundary line that does not correspond to a shoreline or other visible
|
|
756
|
-
* feature on the ground.
|
|
713
|
+
* A legal/statistical boundary line that does not correspond to a shoreline or other visible feature on the ground.
|
|
757
714
|
*/
|
|
758
715
|
NonvisibleLinearLegalStatisticalBoundary = "P0001",
|
|
759
716
|
/**
|
|
760
|
-
* The more-or-less permanent boundary between land and water for a water feature that exists
|
|
761
|
-
* year-round.
|
|
717
|
+
* The more-or-less permanent boundary between land and water for a water feature that exists year-round.
|
|
762
718
|
*/
|
|
763
719
|
PerennialShoreline = "P0002",
|
|
764
720
|
/**
|
|
765
|
-
* The boundary between land and water (when water is present) for a water feature that does not
|
|
766
|
-
* exist year-round.
|
|
721
|
+
* The boundary between land and water (when water is present) for a water feature that does not exist year-round.
|
|
767
722
|
*/
|
|
768
723
|
IntermittentShoreline = "P0003",
|
|
769
724
|
/**
|
|
770
|
-
* An edge that does not represent a legal/statistical boundary, and does not correspond to a
|
|
771
|
-
*
|
|
772
|
-
*
|
|
725
|
+
* An edge that does not represent a legal/statistical boundary, and does not correspond to a shoreline or other
|
|
726
|
+
* visible feature on the ground. Many such edges bound area landmarks, while many others separate water features from
|
|
727
|
+
* each other (e.g., where a bay meets the ocean).
|
|
773
728
|
*/
|
|
774
729
|
OtherNonVisibleEdge = "P0004",
|
|
775
730
|
/**
|
|
776
|
-
* A fixed rail line, generally visible from the surface, which carries any type of rail vehicle
|
|
777
|
-
*
|
|
731
|
+
* A fixed rail line, generally visible from the surface, which carries any type of rail vehicle including railroad,
|
|
732
|
+
* off-street transit and mountain rail systems.
|
|
778
733
|
*/
|
|
779
734
|
RailFeature = "R1011",
|
|
780
735
|
/**
|
|
781
|
-
* Primary roads are limited-access highways that connect to other roads only at interchanges and
|
|
782
|
-
*
|
|
783
|
-
*
|
|
784
|
-
*
|
|
785
|
-
* S1100.
|
|
736
|
+
* Primary roads are limited-access highways that connect to other roads only at interchanges and not at at-grade
|
|
737
|
+
* intersections. This category includes Interstate highways, as well as all other highways with limited access (some
|
|
738
|
+
* of which are toll roads). Limited-access highways with only one lane in each direction, as well as those that are
|
|
739
|
+
* undivided, are also included under S1100.
|
|
786
740
|
*/
|
|
787
741
|
PrimaryRoad = "S1100",
|
|
788
742
|
/**
|
|
789
|
-
* Secondary roads are main arteries that are not limited access, usually in the U.S. highway,
|
|
790
|
-
*
|
|
791
|
-
*
|
|
792
|
-
*
|
|
743
|
+
* Secondary roads are main arteries that are not limited access, usually in the U.S. highway, state highway, or
|
|
744
|
+
* county highway systems. These roads have one or more lanes of traffic in each direction, may or may not be divided,
|
|
745
|
+
* and usually have at-grade intersections with many other roads and driveways. They often have both a local name and
|
|
746
|
+
* a route number.
|
|
793
747
|
*/
|
|
794
748
|
SecondaryRoad = "S1200",
|
|
795
749
|
/**
|
|
796
|
-
* Generally a paved non-arterial street, road, or byway that usually has a single lane of traffic
|
|
797
|
-
*
|
|
798
|
-
*
|
|
799
|
-
* country) some unpaved roads.
|
|
750
|
+
* Generally a paved non-arterial street, road, or byway that usually has a single lane of traffic in each direction.
|
|
751
|
+
* Roads in this feature class may be privately or publicly maintained. Scenic park roads would be included in this
|
|
752
|
+
* feature class, as would (depending on the region of the country) some unpaved roads.
|
|
800
753
|
*/
|
|
801
754
|
LocalNeighborhoodRoadRuralRoadCityStreet = "S1400",
|
|
802
755
|
/**
|
|
803
|
-
* An unpaved dirt trail where a four-wheel drive vehicle is required. These vehicular trails are
|
|
804
|
-
*
|
|
805
|
-
*
|
|
756
|
+
* An unpaved dirt trail where a four-wheel drive vehicle is required. These vehicular trails are found almost
|
|
757
|
+
* exclusively in very rural areas. Minor, unpaved roads usable by ordinary cars and trucks belong in the S1400
|
|
758
|
+
* category.
|
|
806
759
|
*/
|
|
807
760
|
VehicularTrail4WD = "S1500",
|
|
808
761
|
/**
|
|
809
|
-
* A road that allows controlled access from adjacent roads onto a limited access highway, often
|
|
810
|
-
*
|
|
762
|
+
* A road that allows controlled access from adjacent roads onto a limited access highway, often in the form of a
|
|
763
|
+
* cloverleaf interchange.
|
|
811
764
|
*/
|
|
812
765
|
Ramp = "S1630",
|
|
813
766
|
/**
|
|
814
|
-
* A road, usually paralleling a limited access highway, that provides access to structures and/or
|
|
815
|
-
*
|
|
816
|
-
* roads.
|
|
767
|
+
* A road, usually paralleling a limited access highway, that provides access to structures and/or service facilities
|
|
768
|
+
* along the highway. These roads can be named and may intersect with other roads.
|
|
817
769
|
*/
|
|
818
770
|
ServiceDrive = "S1640",
|
|
819
771
|
/**
|
|
820
|
-
* A path that is used for walking, being either too narrow for or legally restricted from
|
|
821
|
-
* vehicular traffic.
|
|
772
|
+
* A path that is used for walking, being either too narrow for or legally restricted from vehicular traffic.
|
|
822
773
|
*/
|
|
823
774
|
WalkwayPedestrianTrail = "S1710",
|
|
824
775
|
/**
|
|
@@ -826,13 +777,13 @@ export declare enum TIGERClassCode {
|
|
|
826
777
|
*/
|
|
827
778
|
Stairway = "S1720",
|
|
828
779
|
/**
|
|
829
|
-
* A service road that does not generally have associated addressed structures and is usually
|
|
830
|
-
*
|
|
780
|
+
* A service road that does not generally have associated addressed structures and is usually unnamed. It is located
|
|
781
|
+
* at the rear of buildings and properties and is used for deliveries.
|
|
831
782
|
*/
|
|
832
783
|
Alley = "S1730",
|
|
833
784
|
/**
|
|
834
|
-
* A road within private property that is privately maintained for service, extractive, or other
|
|
835
|
-
*
|
|
785
|
+
* A road within private property that is privately maintained for service, extractive, or other purposes. These roads
|
|
786
|
+
* are often unnamed.
|
|
836
787
|
*/
|
|
837
788
|
PrivateRoadForServiceVehicles = "S1740",
|
|
838
789
|
/**
|
|
@@ -840,23 +791,22 @@ export declare enum TIGERClassCode {
|
|
|
840
791
|
*/
|
|
841
792
|
InternalUSCensusBureauUse = "S1750",
|
|
842
793
|
/**
|
|
843
|
-
* The main travel route for vehicles through a paved parking area. This may include unnamed roads
|
|
844
|
-
*
|
|
794
|
+
* The main travel route for vehicles through a paved parking area. This may include unnamed roads through
|
|
795
|
+
* apartment/condominium/office complexes where pull-in parking spaces line the road.
|
|
845
796
|
*/
|
|
846
797
|
ParkingLotRoad = "S1780",
|
|
847
798
|
/**
|
|
848
|
-
* A type of seasonal trail, created and marked in snow, primarily traveled by snowmobiles and dog
|
|
849
|
-
*
|
|
799
|
+
* A type of seasonal trail, created and marked in snow, primarily traveled by snowmobiles and dog sleds, and used to
|
|
800
|
+
* reach housing units and to connect communities.
|
|
850
801
|
*/
|
|
851
802
|
WinterTrail = "S1810",
|
|
852
803
|
/**
|
|
853
|
-
* A path that is used for manual or small, motorized bicycles, being either too narrow for or
|
|
854
|
-
*
|
|
804
|
+
* A path that is used for manual or small, motorized bicycles, being either too narrow for or legally restricted from
|
|
805
|
+
* vehicular traffic.
|
|
855
806
|
*/
|
|
856
807
|
BikePathOrTrail = "S1820",
|
|
857
808
|
/**
|
|
858
|
-
* A path that is used for horses, being either too narrow for or legally restricted from
|
|
859
|
-
* vehicular traffic.
|
|
809
|
+
* A path that is used for horses, being either too narrow for or legally restricted from vehicular traffic.
|
|
860
810
|
*/
|
|
861
811
|
BridlePath = "S1830"
|
|
862
812
|
}
|