Project

General

Profile

« Previous | Next » 

Revision 8172

inputs/FIA/*/map.csv: Mapped terms to VegCore

View differences:

import
6 6
map_table
7 7
psql <<'EOF'
8 8
SELECT functions.set_col_types('"SUBPLOT"', ARRAY[
9
  ('STATECD' , 'integer')
10
, ('UNITCD'  , 'integer')
9
  ('STATECD', 'integer')
10
, ('UNITCD', 'integer')
11 11
, ('COUNTYCD', 'integer')
12
, ('PLOT'    , 'integer')
13
, ('INVYR'   , 'integer')
14
, ('SUBP'    , 'integer')
12
, ('locationName', 'integer')
13
, ('INVYR', 'integer')
14
, ('subplot', 'integer')
15 15
]::functions.col_cast[]);
16 16

  
17
SELECT functions.create_if_not_exists($$ALTER TABLE "SUBPLOT" ADD CONSTRAINT "SUBPLOT.ID"     UNIQUE ("*SUBPLOT.CN")                                           $$);
18
SELECT functions.create_if_not_exists($$ALTER TABLE "SUBPLOT" ADD CONSTRAINT "SUBPLOT.unique" UNIQUE ("STATECD", "UNITCD", "COUNTYCD", "PLOT", "INVYR", "SUBP")$$);
17
SELECT functions.create_if_not_exists($$ALTER TABLE "SUBPLOT" ADD CONSTRAINT "SUBPLOT.ID"     UNIQUE ("subplotID")$$);
18
SELECT functions.create_if_not_exists($$ALTER TABLE "SUBPLOT" ADD CONSTRAINT "SUBPLOT.unique" UNIQUE ("STATECD", "UNITCD", "COUNTYCD", "locationName", "INVYR", "subplot")$$);
19 19
SELECT functions.cluster_once('"SUBPLOT"', '"SUBPLOT.unique"');

Also available in: Unified diff