institution

690 rows


Description

Insitutions/organizations.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
institution_id serial 10 nextval('institution_inst_id_seq'::regclass)
affiliation.institution_id institution_affiliation_fk R
batch.lab_id institution_batch_fk R
storage.institution_id institution_storage_fk R

PK. Unique identifier for the institution. Generated by database.

institution_name varchar 250 null

Name of the institution.

institution_type varchar 100 null
dic_institution_type.institution_type dic_institution_type_institution_fk R

FK. Link to dic_institution_type.

institution_url varchar 1000 null

Link to institution website.

timestamp_created timestamptz 35,6 now()
timestamp_modified timestamptz 35,6 now()
lat_dec numeric 12,10 null

Decimal latitude of the institution. Cut and paste straight from google maps, no attempt made to determine uncertainty or control level of precision.

long_dec numeric 13,10 null

Decimal longitude of the institution. Cut and paste straight from google maps, no attempt made to determine uncertainty or control level of precision.

country varchar 250 null

Country of the institution.

institution_code varchar 100 null

Acronym or code of the institution e.g. NSF.

parent_institution int4 10 null

ID of the parent institution. Self-reference, link to the institution table.

institution_shorthand varchar 250 null

Shorthand name for the institution e.g. Caltech, Penn State

state_province varchar 500 null

State or province of the institution

institution_geom geometry 2147483647 null

PostGIS Geom - spatial data type (point)

Indexes

Constraint Name Type Sort Column(s)
institution_id Primary key Asc institution_id
institution_institution_name_key Must be unique Asc institution_name

Relationships