naics landuses table structure#
The NAICS-Landuses table show a crosswalk between the NAICS industry sector and possible landuses for each sector
Field |
Type |
NULL allowed |
Default Value |
Foreign key |
Description |
---|---|---|---|---|---|
naics |
INTEGER |
NO |
A 3-digit NAICS code from the modelled sectors |
||
land_use |
TEXT |
NO |
“ALL” |
Text describing the land use type represented by this location. Values at land_use. |
(* - Primary key)
The SQL statement for table and index creation is below.
CREATE TABLE Naics_Landuses (
"naics" INTEGER NOT NULL,
"land_use" TEXT NOT NULL DEFAULT "ALL"
);
Enums#
The following enums are used in this table.
land_use#
Value |
Description |
---|---|
0 |
LU_AGRICULTURE |
1 |
LU_ALL |
2 |
LU_BUSINESS |
3 |
LU_CIVIC_RELIGIOUS |
4 |
LU_CULTURAL |
5 |
LU_DISTRIBUTION |
6 |
LU_INTERMODAL |
7 |
LU_EDUCATION |
8 |
LU_HIGHER_EDUCATION |
9 |
LU_HOTEL |
10 |
LU_INDUSTRIAL |
11 |
LU_MANUFACTURING |
12 |
LU_SHOPPING |
13 |
LU_MEDICAL |
14 |
LU_MIXED_USE |
15 |
LU_NONE |
16 |
LU_NON_RESIDENTIAL |
17 |
LU_RESIDENTIAL |
18 |
LU_RESIDENTIAL_MULTI |
19 |
LU_RECREATION |
20 |
LU_SPECIAL_GENERATOR |
21 |
TRANSIT_STOP |
22 |
LU_SERVICE |
23 |
LU_RETAIL |
24 |
LU_RESTAURANT |
25 |
LU_EXTERNAL |