Schema
public
Owner
albenard
Descriptions
Vue permettant d'obtenir les points géométriques pour l'étude Dendroécologie du Hêtre dans les Vosges
Fields
Name | Data type | Description |
---|---|---|
localisation |
public.ltree |
|
x |
double precision |
|
y |
double precision |
|
sysgeo |
varchar(40) |
|
parcelle |
public.ltree |
|
etude |
varchar(160) |
|
the_geom |
public.geometry |
|
Rules
Name | Event | Instead | Condition | Description |
---|---|---|---|---|
_RETURN |
SELECT |
|
|
Indices
There are no indices for table v_dendro_hetre_vosges
Definition
CREATE VIEW public.v_dendro_hetre_vosges (
localisation,
x,
y,
sysgeo,
parcelle,
etude,
the_geom)
AS
WITH parcelle_localisation_hetvde AS (
SELECT tr_zone_etude_zon_1.zon_tree,
subltree(tr_zone_etude_zon_1.zon_tree, 0,
nlevel(tr_zone_etude_zon_1.zon_tree) - 1) AS parent,
t_etude_etu.etu_nom
FROM tr_zone_etude_zon tr_zone_etude_zon_1
JOIN tj_zoneetude_utilisee_zon_etu_zoe ON
tr_zone_etude_zon_1.zon_id = tj_zoneetude_utilisee_zon_etu_zoe.zoe_zon_id
JOIN t_etude_etu ON tj_zoneetude_utilisee_zon_etu_zoe.zoe_etu_id =
t_etude_etu.etu_id
WHERE t_etude_etu.etu_nom::text = 'Dendroécologie du Hêtre dans les Vosges'::text
)
SELECT parcelle_localisation_hetvde.parent AS localisation,
t_information_topographique_topo.topo_x_centre AS x,
t_information_topographique_topo.topo_y_centre AS y,
t_information_topographique_topo.topo_xy_syst_geo AS sysgeo,
parcelle_localisation_hetvde.zon_tree AS parcelle,
parcelle_localisation_hetvde.etu_nom AS etude,
st_setsrid(st_makepoint(t_information_topographique_topo.topo_x_centre,
t_information_topographique_topo.topo_y_centre), 2154) AS the_geom
FROM parcelle_localisation_hetvde
JOIN tr_zone_etude_zon ON parcelle_localisation_hetvde.parent =
tr_zone_etude_zon.zon_tree
JOIN t_information_topographique_topo ON
t_information_topographique_topo.topo_zon_id = tr_zone_etude_zon.zon_id;
COMMENT ON VIEW public.v_dendro_hetre_vosges
IS 'Vue permettant d''obtenir les points géométriques pour l''étude Dendroécologie du Hêtre dans les Vosges';
This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37 |