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