Changeset 141 for trunk/data/konvert


Ignore:
Timestamp:
12/13/11 12:16:37 (12 years ago)
Author:
astrid.emde
Message:

weitere Tabelle ax_wald_vegetationsmerkmal und ax_landwirtschaft_vegetationsmerkmal

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/data/konvert/postnas_0.6/alkis_PostNAS_0.6_keytables.sql

    r130 r141  
    585585INSERT INTO ax_bauraumoderbodenordnungsrecht_artderfestlegung (wert, bezeichner) VALUES (2800,'VerkehrsflÀchenbereinigung'); 
    586586 
    587  
     587--ax_landwirtschaft_vegetationsmerkmal 
     588-- --------------------------------- 
     589 
     590CREATE TABLE ax_landwirtschaft_vegetationsmerkmal ( 
     591    wert            integer,  
     592    bezeichner  character varying, 
     593    CONSTRAINT pk_ax_landwirtschaft_vegetationsmerkmal PRIMARY KEY (wert) 
     594  ); 
     595COMMENT ON TABLE ax_landwirtschaft_vegetationsmerkmal  
     596IS 'SchlÃŒsseltabelle mit Werten aus GeoInfoDok NW, geladen mit SQL-Script. Wird fÃŒr Infoabfrage benötigt.'; 
     597 
     598INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1100,'Ackerland'); 
     599INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1011,'Streuobstacker'); 
     600INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1012,'Hopfen'); 
     601INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1013,'Spargel'); 
     602INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1020,'GrÃŒnland'); 
     603INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1021,'Streuobstwiese'); 
     604INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1030,'Gartenland'); 
     605INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1031,'Baumschule'); 
     606INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1040,'Weingarten'); 
     607INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1050,'Obstplantage'); 
     608INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1051,'Obstbaumplantage'); 
     609INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1052,'Obststrauchplantage'); 
     610INSERT INTO ax_landwirtschaft_vegetationsmerkmal (wert,bezeichner) VALUES (1200,'Brachland'); 
     611 
     612 
     613-- ax_wald_vegetationsmerkmal 
     614-- --------------------------------- 
     615 
     616CREATE TABLE ax_wald_vegetationsmerkmal ( 
     617    wert            integer,  
     618    bezeichner  character varying, 
     619    CONSTRAINT pk_ax_wald_vegetationsmerkmal PRIMARY KEY (wert) 
     620  ); 
     621 
     622COMMENT ON TABLE ax_wald_vegetationsmerkmal 
     623IS 'SchlÃŒsseltabelle mit Werten aus GeoInfoDok NW, geladen mit SQL-Script. Wird fÃŒr Infoabfrage benötigt.'; 
     624 
     625INSERT INTO ax_wald_vegetationsmerkmal (wert,bezeichner) VALUES (1100,'Laubholz'); 
     626INSERT INTO ax_wald_vegetationsmerkmal (wert,bezeichner) VALUES (1200,'Nadelholz'); 
     627INSERT INTO ax_wald_vegetationsmerkmal (wert,bezeichner) VALUES (1300,'Laub- und Nadelholz'); 
     628INSERT INTO ax_wald_vegetationsmerkmal (wert,bezeichner) VALUES (1310,'Laubwald mit Nadelholz'); 
     629INSERT INTO ax_wald_vegetationsmerkmal (wert,bezeichner) VALUES (1320,'Nadelwald mit Laubholz'); 
    588630-- ENDE -- 
Note: See TracChangeset for help on using the changeset viewer.