pggeodb-preprod.nancy.inra.fr/db_phyto - db_phyto on pggeodb-preprod.nancy.inra.fr
Previous topic Chapter index Next topic

Table: t_information_topographique_topo

 

 

Schema

public

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

Table des informations topographiques à associer aux zones d'étude. (x,y,altitude ...)

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

topo_id

serial

 

nextval('t_information_topographique_topo_topo_id_seq'::regclass)

Identifiant automatique de l'information topographique.

 

topo_zon_id

integer

 

 

Identifiant automatique de la zone d'étude liée

 

 

topo_x_centre

double precision

 

 

 

 

Coordonnée X du centre

 

 

topo_y_centre

double precision

 

 

 

 

Coordonnée Y du centre

 

 

topo_xy_syst_geo

varchar(40)

 

 

 

 

Système géographique utilisé pour les champs X et Y centre

 

 

topo_xy_precision

varchar(32)

 

 

 

 

Estimation de la précision pour les champs X et Y centre (donnée par le GPS ou à la discrétion de l'opérateur) exprimé dans le même système que X et Y

 

 

topo_xy_methodo_origine

varchar(128)

 

 

 

 

Champ libre permettant de décrire la méthode utilisée pour la mesure des coorodnnées X,Y et de préciser l'origine (Carte, GPS ...) et autres informations complémentaires.

 

 

topo_geom2154

public.geometry

 

 

 

 

objet SIG exprimé en lambert 93

 

 

topo_altitude

real

 

 

 

 

Altitude exprimée en mètres

 

 

topo_altitutde_methodo_origine

varchar(128)

 

 

 

 

Champ libre permettant de décrire la méthode utilisée pour la mesure de l'altitude et de préciser l'origine (Carte, Altimètre ...) et autres informations complémentaires (modèle altimètre ...)

 

 

topo_pente

real

 

 

 

 

Pente exprimée en ° décimaux par rapport à l'horizontale

 

 

topo_exposition

varchar(32)

 

 

 

 

 

 

 

topo_pos_topo

varchar(64)

 

 

 

 

 

 

 

topo_pente_masque

varchar(32)

 

 

 

 

 

 

 

topo_pente_methodo_origine

varchar(128)

 

 

 

 

 

 

 

topo_exposition_methodo_origine

varchar(128)

 

 

 

 

 

 

 

topo_pos_topo_methodo_origine

varchar(128)

 

 

 

 

 

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_zon_topo

topo_zon_id

public.tr_zone_etude_zon

zon_id

No Action

No Action

 

Immediate

Le champ topo_zon_id correspond obligatoirement à une zone d'étude existante

 

Check Constraints

There are no check constraints for table t_information_topographique_topo

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_zon_topo

btree

 

topo_zon_id

 

Une zone d'étude ne peut être liée qu'une seule fois au plus à des informations topographiques

t_information_topographique_topo_pkey

btree

 

topo_id

 

x_btr_zon_topo

btree

 

topo_zon_id

 

 

Index de clé étrangère pour accélérer les mises à jour / suppression

 

Triggers

There are no triggers for table t_information_topographique_topo

 

Rules

There are no rules for table t_information_topographique_topo

 

Policies

There are no policies for table t_information_topographique_topo

 

Referenced

There are no tables referenced by table t_information_topographique_topo

 

Properties

Property

Value

Inherited From

 

Rows

3382

Pages

56

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.t_information_topographique_topo (
 topo_id SERIAL,
 topo_zon_id INTEGER NOT NULL,
 topo_x_centre DOUBLE PRECISION,
 topo_y_centre DOUBLE PRECISION,
 topo_xy_syst_geo VARCHAR(40),
 topo_xy_precision VARCHAR(32),
 topo_xy_methodo_origine VARCHAR(128),
 topo_geom2154 public.geometry,
 topo_altitude REAL,
 topo_altitutde_methodo_origine VARCHAR(128),
 topo_pente REAL,
 topo_exposition VARCHAR(32),
 topo_pos_topo VARCHAR(64),
 topo_pente_masque VARCHAR(32),
 topo_pente_methodo_origine VARCHAR(128),
 topo_exposition_methodo_origine VARCHAR(128),
 topo_pos_topo_methodo_origine VARCHAR(128),
 CONSTRAINT c_uni_zon_topo UNIQUE(topo_zon_id),
 CONSTRAINT t_information_topographique_topo_pkey PRIMARY KEY(topo_id),
 CONSTRAINT c_fk_zon_topo FOREIGN KEY (topo_zon_id)
   REFERENCES public.tr_zone_etude_zon(zon_id)
   ON DELETE NO ACTION
   ON
UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.t_information_topographique_topo
IS 'Table des informations topographiques à associer aux zones d''étude. (x,y,altitude ...)';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_id
IS 'Identifiant automatique de l''information topographique.';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_zon_id
IS 'Identifiant automatique de la zone d''étude liée';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_x_centre
IS 'Coordonnée X du centre';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_y_centre
IS 'Coordonnée Y du centre';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_xy_syst_geo
IS 'Système géographique utilisé pour les champs X et Y centre';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_xy_precision
IS 'Estimation de la précision pour les champs X et Y centre (donnée par le GPS ou à la discrétion de l''opérateur) exprimé dans le même système que X et Y';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_xy_methodo_origine
IS 'Champ libre permettant de décrire la méthode utilisée pour la mesure des coorodnnées X,Y et de préciser l''origine (Carte, GPS ...) et autres informations complémentaires.';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_geom2154
IS 'objet SIG exprimé en lambert 93';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_altitude
IS 'Altitude exprimée en mètres';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_altitutde_methodo_origine
IS 'Champ libre permettant de décrire la méthode utilisée pour la mesure de l''altitude et de préciser l''origine (Carte, Altimètre ...) et autres informations complémentaires (modèle altimètre ...)';

COMMENT ON COLUMN public.t_information_topographique_topo.topo_pente
IS 'Pente exprimée en ° décimaux par rapport à l''horizontale';

COMMENT ON CONSTRAINT c_fk_zon_topo ON public.t_information_topographique_topo
IS 'Le champ topo_zon_id correspond obligatoirement à une zone d''étude existante';

COMMENT ON CONSTRAINT c_uni_zon_topo ON public.t_information_topographique_topo
IS 'Une zone d''étude ne peut être liée qu''une seule fois au plus à des informations topographiques';

CREATE INDEX x_btr_zon_topo ON public.t_information_topographique_topo
 USING btree (topo_zon_id);

COMMENT ON INDEX public.x_btr_zon_topo
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';

This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37
Previous topic Chapter index Next topic