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