EXAMPLE OF PLU TRANSFORMATION IN HALE Silvia Franceschi, Hydrologis Environmental Engineering

Size: px
Start display at page:

Download "EXAMPLE OF PLU TRANSFORMATION IN HALE Silvia Franceschi, Hydrologis Environmental Engineering"

Transcription

1 EXAMPLE OF PLU TRANSFORMATION IN HALE Silvia Franceschi, Hydrologis Environmental Engineering This use-case shows a real example of mapping and transformation of the data of a regional plan of land use between the original and the requested Inspire format. The data used for this example is the land use official plan of the Province of Trento, approved in February In particular it has been considered: 1. shapefile of land use: two different updates of this layer are considered, one is the most recent one, approved with a regional decree of February 2013 and the other one was the previous one, approved in July shapefile of hydro-geomorphological risk maps: only the geometries of the last update 3. main official documentation The PLU conceptual schema corresponds to a dataset that corresponds to a spatial planning document. Geographic information as well as the informative or descriptive parts contained in a spatial planning documents are taken into consideration in the LandUse data application schema. Inspire PLU: Data Specification on Land Use.

2 PLU of the Province of Trento: visualization of the geometries. PLU of the Province of Trento: visualization of the attribute table. The attribute table shows the list of attribute and some example of content. The real meaning of the attributes is: AREA: contains the information of the area of each polygon PERIMETER: contains the information of the perimeter of each polygon USO_POL_: contains an ID of the polygons did for old databases USO_POL_ID: contains an ID of the polygons did for old databases COD_TOT: contains the land use classification code PESOPOL: contains the information of the importance of the object for the evaluation of the hydrogeomorphological risk maps PLAN_FROM: contains the date of the approval of the general plan AGGIORN_6: contains the date of the update of the geometries PLAN_NAME: contains the name of the plan The data of the hydro-geomorphological risk are very similar to the ones of the land use, even if both the geometries and the attributes are different.

3 PLU of the Province of Trento: visualization of the geometries of hydro-geomorphological risk classes. PLU of the Province of Trento: visualization of the attribute table hydro-geomorphological risk layer.

4 PRELIMINARY OPERATIONS PLU is classified with a local classification, since Inspire requires to use HILUCS classification for land use a reclassification is needed. A classification operation in HALE can be done manually on the flight or loading a CSV file containing the correspondence between the original and the HILUCS classes. Regarding the PLU of the Province of Trento the following classification has been used. COD_TOT DESCRIPTION HILUCS CLASSIFICATION 1 Aree Residenziali 5_1_PermanentResidentialUse 2 Aree Produttive 2_SecondaryProduction 3 Aree Ricreative 3_4_4_OpenAirRecreationalArea 4 Aree Agricole 1_1_1_CommercialAgriculturalProduction 5 Improduttivo 6_3_1_LandAreasNotInOtherEconomicUse 6 Campeggi 5_3_OtherResidentialUse 7 Depuratori e Discariche 4_3_3_WasteTreatment 8 Aree Sciabili 3_4_3_SportsInfrastructure 9 Aree a bosco, prato e prateria alpina 1_2_Forestry 101 Strade di importanza primaria 4_1_1_RoadTransport 102 Ferrovie 4_1_2_RailwayTransport 103 Strade di importanza secondaria 4_1_1_RoadTransport An other preliminary operation that would help us during the mapping process is the creation of library of information and links for the documentation of the plan. These information are stored in a CSV file containing the basic properties requested in the Insprire schema for OfficialDocumentation, in particular: 1. an identifier 2. legislationcitation: reference to the document that contains the text of the regulation. 3. DocumentCitation: citation of scanned plans and structural drawings being sometimes georeferenced and sometimes not (raster images, vector drawings or scanned text). The content of the CSV file for the use case of the PLU of the Province of Trento is: ID DOCUMENTCITATION LEGISLATIONCITATION Doc_1 Modalita=Delibere&anno=2013&numero=228 Doc_2 Doc_3 Modalita=Delibere&anno=2011&numero= Now we are ready to start mapping with HALE...

5 ALIGNMENT AND MAPPING The very first operation to do in HALE is to load the source schema, the source data and the target schema. This operation is very easy, select the correspondent element to import from the menu File Import HALE can load source schema from different sources and in particular from shapefiles and CSV files. Considering the source data and the target schema there are different FeatureType that has to be considered in this example, in particular: 1. ZoningElement: contains the information of the geometries of the Land Use 2. SpatialPlan: contains all the information related to the official plan 3. OfficialDocumentation: contains the links and reference for the available documentation 4. SupplementaryRegulation: contains the information of additional regulation which supplement the zoning. HALE: starting point for mapping, source and target schema with source data loaded. The starting Type to map is the LandUse shapefile which contains the basic information for both the ZoningElement and the SpatialPlan. All the mapping is based on the retype operation. Retype function espresses that a source and a target type are semantically equal: for each instance of the source type, an instance of the target type is created. Property relation only take effect in the context of a type relation. First a type relation must be defined, then property relations between the involved types can be specified. ZoningElement 1. do a retype mapping between uso_pol_part and ZoningElement 2. do a rename mapping between the_geom and geometry (choose structural rename)

6 3. do a date extraction between attribute AGGIORN_6 and validfrom 4. do a rename between COD_TOT and specificlanduse 5. create an Inspire Identifier using the information in USO_POL_ID to generate inspireid 6. assign the other mandatory properties: 6.1. add assigns to regulationnature (definedinlegislation) 6.2. add the generate unique ID for id in ZoningElement 6.3. add assing to hilucslanduse.codespace to add reclassification using the CSV list between COD_TOT and hilucslanduse: since hilucslanduse is a mandatory property it can not be null, so it is important to set the to use for unmapped source values a fixed value, for example 6_6_NotKnownUse 6.5. add a Groovy script to assign the validto property to the features of the two different updates: the validto property is defined as the date before the date of the new update, so it is based on AGGIORN_6 attribute field of the land use shapefile and the syntax is the following: if(aggiorn_6.equals(" ")) { return " "; } else { return null;} HALE: mapping of the ZoningElement FeatureType from the LandUse shapefile. Considering the same source type it is then possible to map also the SpatialPlan. In this case a merge operation has to be used to set a relation between the types. This function merges multiple instances of the source type into one instance of the target type based on one or more matching properties.

7 SpatialPlan 1. do a merge mapping between land use shapefile uso_pol_part and SpatialPlan using PLAN_NAME 2. use a date extraction to associate the attribute PLAN_FROM to the property validfrom 3. create an Inspire Identifier using PLAN_NAME as reference to generate inspireid 3.1. do a rename between PLAN_NAME and officialtitle 3.2. do a rename between PLAN_NAME and id of SpatialPlan 4. do a compute extent of the geometry of the shapefile the_geom to extent in SpatialPlan (boundingbox) 5. add some additional assignment for the mandatory fields of SpatialPlan 5.1. add assing to levelofspatialplan (regional) 5.2. add assing to plantypename (PianoRegionale) Link between ZoningElement and SpatialPlan Since all land use polygons are part of one plan we can use directly assign operation to assign to plan href in ZoningElement the name of the reference plan. HALE: mapping of the SpatialPlan FeatureType from the LandUse shapefile.

8 A very important request in the Inspire schema for PLU is the link and reference to the official documentatin of the plan. For the example only web link are used as listed in the CSV file. The basic operation to start with here is retype. OfficialDocumentation 1. do a retype between documents and OfficialDocumentation 2. do a rename between documentationcitation and plandocument DocumentCitation DocumentCitation link (choose structural rename) 3. create an Inspire identifier using the information contained in INSPIREID to generate inspireid 3.1. do a rename between INSPIREID and id of OfficialDocumentation 4. do a rename between legislationcitation and LegislationCitation LegislationCitation link (choose structural rename) 5. add the assignment to the missing mandatory properties 5.1. add assign to legislationcitation level (SubNational) 5.2. add the generate unique ID for id in LegislationCitation 5.3. add the generate sequential ID for name in LegislationCitation (Official_Document_) 5.4. add the generate unique ID for id in DocumentCitation 5.5. add assign to name in DocumentCitation (Trentino Planned Land Use) Link between ZoningElement and OfficialDocumentation Use a groovy script to assign the reference to the officialdocumentation of the features in ZoningElement, since ZoningElement contains two different update of the land use polygons, the official documentation will be different for the two and it is based on the date of the update contained in the attribute AGGIORN_6. The two entities are AGGIORN_6 and officialdocument href of ZoningElement, the script is: if(aggiorn_6.equals(" ")) { return "#Doc_2"; } else { return "#Doc_1";} where #Doc_1 and #Doc_2 are the reference to the ID of the two documents as inserted in the OfficialDocumentation. Link between SpatialPlan and OfficialDocumentation Since all the documents included in the OfficialDocumentation are related to the plan it is necessary to link all of them to SpatialPlan officialdocumentation href. In this case we have to create two other new instances of the same property officialdocumentation and assign to each of them the link to the documents using the # before the name of the document (i.e. #Doc_3)

9 HALE: mapping of the OfficialDocumentation FeatureType from the document CSV. HALE: mapping of the types ZoningElement, SpatialPlan and OfficialDocumentation.

10 The last information to be mapped is the additional regulation on hydro-geomorphological risk mapping. This information is stored in an other shapefile and the retype operations is used to map the contained elements to SupplementaryRegulation. SupplementaryRegulation 1. do a retype mapping between rispol_part and SupplementaryRegulation 2. do a rename mapping between the_geom and geometry (choose structural rename) 3. create an Inspire Identifier using RISPOL_ID as reference to generate inspireid 3.1. do a rename between RISPOL_ID and id of SupplementaryRegulation 4. do a date extraction between attribute UPDATE and validfrom 5. do a rename between CLASSE and specificsupplementaryregulation codespace 6. add some additional assignment for the mandatory fields of SupplementaryRegulation 6.1. add assign to regulationnature (generallybinding) 6.2. add assign to supplementaryregulation (2_1_2_FloodRiskManagementZone) 6.3. add assign to supplementaryregulation codespace ( Link between SupplementaryRegulation and SpatialPlan Since all risk zones polygons are part of one plan we can use directly assign operation to assign to plan href in SupplementaryRegulation the name of the reference plan. Link between SupplementaryRegulation and OfficialDocumentation Since all risk zones polygons are part of the same update of the land use plan we can use directly assign operation to assign to officialdocument href in SupplementaryRegulation the name of the reference documentation (#Doc_1).

11 HALE: mapping of the SupplementaryRegulation FeatureType from the shapefile of hydro-geomorphological risk. HALE: final mapping of the types ZoningElement, SpatialPlan, OfficialDocumentation and SupplementaryRegulation.

How to Register where a Brownfield Land Register has been published.

How to Register where a Brownfield Land Register has been published. How to Register where a Brownfield Land Register has been published. Version 3 Date 21/12/2017 Contents About this guide 1 Why register the location of a published file? 2 The CSV file 2 Spatial files

More information

Land Cover spatial datasets harmonization in Portugal using HALE

Land Cover spatial datasets harmonization in Portugal using HALE Land Cover spatial datasets harmonization in Portugal using HALE Teresa Zuna, Alexandra Fonseca, Danilo Furtado, Ana Luísa Gomes, André Serronha, Paulo Patrício Introduction DGT is the entity responsible

More information

Application of the Catalogue and Validator tools in the context of Inspire Alberto Belussi, Jody Marca, Mauro Negri, Giuseppe Pelagatti

Application of the Catalogue and Validator tools in the context of Inspire Alberto Belussi, Jody Marca, Mauro Negri, Giuseppe Pelagatti Application of the Catalogue and Validator tools in the context of Inspire Alberto Belussi, Jody Marca, Mauro Negri, Giuseppe Pelagatti Politecnico di Milano giuseppe.pelagatti@polimi.it spatialdbgroup.polimi.it

More information

ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap

ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcGIS Procedures NUMBER OPERATION APPLICATION: TOOLBAR 1 Import interchange file to coverage 2 Create a new 3 Create a new feature dataset 4 Import Rasters into a 5 Import tables into a PROCEDURE Coverage

More information

Using the Geodatabase

Using the Geodatabase Using the Geodatabase February 13, 2002 Presented by: John Stroud, ESRI GeoDatabase Geodatabase comes in two flavors Personal mdb format ArcSDE rdbms format ArcGIS is a suite of three products ArcView,

More information

Data Assembly, Part II. GIS Cyberinfrastructure Module Day 4

Data Assembly, Part II. GIS Cyberinfrastructure Module Day 4 Data Assembly, Part II GIS Cyberinfrastructure Module Day 4 Objectives Continuation of effective troubleshooting Create shapefiles for analysis with buffers, union, and dissolve functions Calculate polygon

More information

Combine Yield Data From Combine to Contour Map Ag Leader

Combine Yield Data From Combine to Contour Map Ag Leader Combine Yield Data From Combine to Contour Map Ag Leader Exporting the Yield Data Using SMS Program 1. Data format On Hard Drive. 2. Start program SMS Basic. a. In the File menu choose Open. b. Click on

More information

Topic 5: Raster and Vector Data Models

Topic 5: Raster and Vector Data Models Geography 38/42:286 GIS 1 Topic 5: Raster and Vector Data Models Chapters 3 & 4: Chang (Chapter 4: DeMers) 1 The Nature of Geographic Data Most features or phenomena occur as either: discrete entities

More information

file:///c:/users/c_harmak/appdata/local/temp/arc8f36/tmp308d.tmp.htm

file:///c:/users/c_harmak/appdata/local/temp/arc8f36/tmp308d.tmp.htm Page 1 of 6 FireDistricts_CoB Shapefile Tags Bradenton, boundary, fire districts Summary The best current representation of the City of Bradenton Florida's fire districts and sub-districts. Description

More information

Best Practices for Managing Scanned Imagery. Peter Becker

Best Practices for Managing Scanned Imagery. Peter Becker Best Practices for Managing Scanned Imagery Peter Becker Objectives Making Scanned Imagery Accessible - Topographic maps - Historic scanned maps - Navigation maps - Engineering drawings Uses of Scanned

More information

v SMS 12.3 Tutorial GIS P Prerequisites Time Requirements Objectives

v SMS 12.3 Tutorial GIS P Prerequisites Time Requirements Objectives v. 12.3 SMS 12.3 Tutorial Objectives This tutorial demonstrates how to import data, visualize it, and convert it into SMS coverage data that could be used to build a numeric model. This tutorial will instruct

More information

Czech experience about transformation of the themes Elevation and Orthoimagery

Czech experience about transformation of the themes Elevation and Orthoimagery Czech experience about transformation of the themes Elevation and Orthoimagery Veronika KUSOVA LAND SURVEY OFFICE CZECH OFFICE FOR SURVEYING, MAPPING AND CADASTRE Zeměměřický úřad, Pod sídlištěm 1800/9,

More information

v SMS 12.2 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives

v SMS 12.2 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives v. 12.2 SMS 12.2 Tutorial Objectives This tutorial demonstrates how to read in data, visualize it, and convert it into SMS coverage data that could be used to build a numeric model. This tutorial will

More information

UN-GGIM: Europe core data and adaptation of INSPIRE models Dominique Laurent (IGN)

UN-GGIM: Europe core data and adaptation of INSPIRE models Dominique Laurent (IGN) Workshop about extensions of INSPIRE data specifications 20-21 June 2017 UN-GGIM: Europe core data and adaptation of INSPIRE models Dominique Laurent (IGN) UN-GGIM General presentation UN-GGIM(United Nations

More information

RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O

RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O RASTER ANALYSIS S H A W N L. P E N M A N E A R T H D A T A A N A LY S I S C E N T E R U N I V E R S I T Y O F N E W M E X I C O TOPICS COVERED Spatial Analyst basics Raster / Vector conversion Raster data

More information

Making Yield Contour Maps Using John Deere Data

Making Yield Contour Maps Using John Deere Data Making Yield Contour Maps Using John Deere Data Exporting the Yield Data Using JDOffice 1. Data Format On Hard Drive 2. Start program JD Office. a. From the PC Card menu on the left of the screen choose

More information

v SMS 12.1 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives

v SMS 12.1 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives v. 12.1 SMS 12.1 Tutorial Objectives This tutorial demonstrates how to read in data, visualize it, and convert it into SMS coverage data that could be used to build a numeric model. This tutorial will

More information

v SMS 11.1 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives

v SMS 11.1 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives v. 11.1 SMS 11.1 Tutorial GIS Objectives This tutorial demonstrates how you can read in GIS data, visualize it, and convert it into SMS coverage data that could be used to build a numeric model. We will

More information

v SMS 13.0 Tutorial GIS P Prerequisites Time Requirements Objectives

v SMS 13.0 Tutorial GIS P Prerequisites Time Requirements Objectives v. 13.0 SMS 13.0 Tutorial Objectives This tutorial demonstrates how to import data, visualize it, and convert it into SMS coverage data that could be used to build a numeric model. This tutorial will instruct

More information

Christian Ansorge 27th April CDDA webinar 27th April Linked Approach as reporting mechanism

Christian Ansorge 27th April CDDA webinar 27th April Linked Approach as reporting mechanism Christian Ansorge 27th April 2017 CDDA webinar 27th April 2017 Linked Approach as reporting mechanism Generic Linked Approach Scope Background and motivation for reporting reusing INSPIRE Introduction

More information

Challenges in Geospatial Data Harmonisation:

Challenges in Geospatial Data Harmonisation: Challenges in Geospatial Data Harmonisation: Examples and Approaches from the HUMBOLDT project AGILE Workshop 2009 Astrid Fichtinger, Eva Klien, Christine Giger Overview The HUMBOLDT Project Data harmonisation

More information

Appendix 5. GIS operation guide (Hue) -101-

Appendix 5. GIS operation guide (Hue) -101- Appendix 5 GIS operation guide (Hue) -101- GIS Operation Guide T.T. Hue Province Contents Object of Training Course Course 1 View [1-1] Base Map [1-2] Add raster [1-3] Setting up raster property [1-4]

More information

Compass INSPIRE Services. Compass INSPIRE Services. White Paper Compass Informatics Limited Block 8, Blackrock Business

Compass INSPIRE Services. Compass INSPIRE Services. White Paper Compass Informatics Limited Block 8, Blackrock Business Compass INSPIRE Services White Paper 2010 Compass INSPIRE Services Compass Informatics Limited Block 8, Blackrock Business Park, Carysfort Avenue, Blackrock, County Dublin, Ireland Contact Us: +353 1 2104580

More information

Selective 4D modelling framework for spatialtemporal Land Information Management System

Selective 4D modelling framework for spatialtemporal Land Information Management System Selective 4D modelling framework for spatialtemporal Land Information Management System A. Doulamis, S. Soile, N. Doulamis, C. Chrisouli, N. Grammalidis, K. Dimitropoulos C. Manesis, C. Potsiou, C. Ioannidis

More information

Keep it simple! a Nordic view on technical simplification issues. Nordic INSPIRE Network. INSPIRE Conference 2017

Keep it simple! a Nordic view on technical simplification issues. Nordic INSPIRE Network. INSPIRE Conference 2017 Keep it simple! a Nordic view on technical simplification issues 1 The network Formed in 2007 as a result of the INSPIRE directive Share experience and knowledge Develop common standpoints Exchange action

More information

INSPIRE Coverage Types

INSPIRE Coverage Types INSPIRE Infrastructure for Spatial Information in Europe INSPIRE Coverage Types Title Status Creator Date 2012-06-15 Subject Publisher Type Description Contributor Format Source Rights Identifier Language

More information

Development of guidelines for publishing statistical data as linked open data

Development of guidelines for publishing statistical data as linked open data Development of guidelines for publishing statistical data as linked open data MERGING STATISTICS A ND GEOSPATIAL INFORMATION IN M E M B E R S TATE S POLAND Mirosław Migacz INSPIRE Conference 2016 Barcelona,

More information

Conceptual schema matching with the Ontology Mapping Language: requirements and evaluation

Conceptual schema matching with the Ontology Mapping Language: requirements and evaluation 0 Conceptual schema matching with the Ontology Mapping Language: requirements and evaluation Marian de Vries / Thorsten Reitz AGILE workshop 2009 2008 Humboldt Consortium http://www.esdi-humboldt.eu Dr.

More information

Chapter 17 Creating a New Suit from Old Cloth: Manipulating Vector Mode Cartographic Data

Chapter 17 Creating a New Suit from Old Cloth: Manipulating Vector Mode Cartographic Data Chapter 17 Creating a New Suit from Old Cloth: Manipulating Vector Mode Cartographic Data Imagine for a moment that digital cartographic databases were a perfect analog of the paper map. Once you digitized

More information

Elec_ISO_RTO_Regions

Elec_ISO_RTO_Regions Page 1 of 8 Elec_ISO_RTO_Regions Shapefile Tags independent system operator, iso, regional transmission organization, rto, utilitiescommunication, economy Summary The S&P Global Platts Independent System

More information

GEOFidelis SDSFIE Implementation Roles and Responsibilities Guide

GEOFidelis SDSFIE Implementation Roles and Responsibilities Guide GEOFidelis SDSFIE Implementation Roles and Responsibilities Guide Version: 1.4 Prepared for: USMC Installation Geospatial Information and Services Program (GEOFidelis) November 19th, 2012 TABLE OF CONTENTS

More information

An Introduction to Geographic Information Systems (GIS) using ArcGIS 9.2

An Introduction to Geographic Information Systems (GIS) using ArcGIS 9.2 An Introduction to Geographic Information Systems (GIS) using ArcGIS 9.2 by Marcel Fortin, GIS and Map Librarian, University of Toronto Libraries, 2009 gis.maps@utoronto.ca http://www.library.utoronto.ca/maplib/

More information

HUMBOLDT Application Scenario: Protected Areas

HUMBOLDT Application Scenario: Protected Areas CC by Erlend Schei Copyright by Kecko Copyright by Michael Bezzina CC by Gunnar Ries Copyright by Michael Bezzina Copyright by Michael Bezzina Copyright by Michael Bezzina CC by fs999 CC by Jordan Nielsen

More information

BAT Quick Guide 1 / 20

BAT Quick Guide 1 / 20 BAT Quick Guide 1 / 20 Table of contents Quick Guide... 3 Prepare Datasets... 4 Create a New Scenario... 4 Preparing the River Network... 5 Prepare the Barrier Dataset... 6 Creating Soft Barriers (Optional)...

More information

MARS v Release Notes Revised: May 23, 2018 (Builds and )

MARS v Release Notes Revised: May 23, 2018 (Builds and ) MARS v2018.0 Release Notes Revised: May 23, 2018 (Builds 8302.01 8302.18 and 8350.00 8352.00) Contents New Features:... 2 Enhancements:... 6 List of Bug Fixes... 13 1 New Features: LAS Up-Conversion prompts

More information

ECP-2007-GEO OneGeology-Europe. Annex 1: Cookbook

ECP-2007-GEO OneGeology-Europe. Annex 1: Cookbook ECP-2007-GEO-317001 OneGeology-Europe Annex 1: Cookbook for creating multilingual metadata records using the OneGeology-Europe Metadata system (MIcKA) Authors: Lucie Kondrová, Robert Tomas, Štěpán Kafka

More information

GISCI GEOSPATIAL CORE TECHNICAL KNOWLEDGE EXAM CANDIDATE MANUAL AUGUST 2017

GISCI GEOSPATIAL CORE TECHNICAL KNOWLEDGE EXAM CANDIDATE MANUAL AUGUST 2017 GISCI GEOSPATIAL CORE TECHNICAL KNOWLEDGE EXAM CANDIDATE MANUAL AUGUST 2017 This document provides information about the GISCI Geospatial Core Technical Knowledge Exam, now a requirement for GISCI GISP

More information

ArcGIS Server: publishing geospatial data to the web using the EEA infrastructure

ArcGIS Server: publishing geospatial data to the web using the EEA infrastructure ArcGIS Server: publishing geospatial data to the web using the EEA infrastructure *IMPORTANT: Map Services should be published using the EEA Map Services Tick Sheet for guidance. Contact Sebastien Petit

More information

Facilities Management Data Input, Editing and Management. Adrien Litton

Facilities Management Data Input, Editing and Management. Adrien Litton Facilities Management Data Input, Editing and Management Adrien Litton Overview What is FM in GIS? Data input Data editing Data management Supporting the Real Property Life-Cycle GIS Integrates the Facility

More information

George Mason University Department of Civil, Environmental and Infrastructure Engineering

George Mason University Department of Civil, Environmental and Infrastructure Engineering George Mason University Department of Civil, Environmental and Infrastructure Engineering Dr. Celso Ferreira Prepared by Lora Baumgartner December 2015 Revised by Brian Ross July 2016 Exercise Topic: Getting

More information

5 Data content and structure

5 Data content and structure 5 Data content and structure The INSPIRE theme Utility and governmental services has been split in 3 separate main packages, that are developed hereafter. Though main features of the 3 sub-themes have

More information

Soil texture: based on percentage of sand in the soil, partially determines the rate of percolation of water into the groundwater.

Soil texture: based on percentage of sand in the soil, partially determines the rate of percolation of water into the groundwater. Overview: In this week's lab you will identify areas within Webster Township that are most vulnerable to surface and groundwater contamination by conducting a risk analysis with raster data. You will create

More information

INSPIRE data specifications Advanced. Stijn Keijers (SADL KU Leuven)

INSPIRE data specifications Advanced. Stijn Keijers (SADL KU Leuven) 1 INSPIRE data specifications Advanced Stijn Keijers (SADL KU Leuven) Modules 2 1. Understanding INSPIRE data specifications 2. Introduction UML 3. Introduction XML/GML 4. Transforming data into INSPIRE

More information

Spatial data and QGIS

Spatial data and QGIS Spatial data and QGIS Xue Jingbo IT Center 2017.08.07 A GIS consists of: Spatial Data. Computer Hardware. Computer Software. Longitude Latitude Disease Date 26.870436-31.909519 Mumps 13/12/2008 26.868682-31.909259

More information

Metadata or "data about data" describe the content, quality, condition, and other characteristics of data. The Federal Geographic Data Committee

Metadata or data about data describe the content, quality, condition, and other characteristics of data. The Federal Geographic Data Committee Metadata or "data about data" describe the content, quality, condition, and other characteristics of data. The Federal Geographic Data Committee (http://www.fgdc.gov/) approved the Content Standard for

More information

Metadata or "data about data" describe the content, quality, condition, and other characteristics of data. The Federal Geographic Data Committee

Metadata or data about data describe the content, quality, condition, and other characteristics of data. The Federal Geographic Data Committee Metadata or "data about data" describe the content, quality, condition, and other characteristics of data. The Federal Geographic Data Committee (http://www.fgdc.gov/) approved the Content Standard for

More information

Vector-Based GIS Data Processing. Chapter 6

Vector-Based GIS Data Processing. Chapter 6 Vector-Based GIS Data Processing Chapter 6 Vector Data Model Feature Classes points lines polygons Layers limited to one class of data Figure p. 186 Vector Data Model Shapefiles ArcView non-topological

More information

Study and guidelines on Geospatial Linked Data as part of ISA Action 1.17 Resource Description Framework

Study and guidelines on Geospatial Linked Data as part of ISA Action 1.17 Resource Description Framework DG Joint Research Center Study and guidelines on Geospatial Linked Data as part of ISA Action 1.17 Resource Description Framework 6 th of May 2014 Danny Vandenbroucke Diederik Tirry Agenda 1 Introduction

More information

Exercise 1: Introduction to ILWIS with the Riskcity dataset

Exercise 1: Introduction to ILWIS with the Riskcity dataset Exercise 1: Introduction to ILWIS with the Riskcity dataset Expected time: 2.5 hour Data: data from subdirectory: CENN_DVD\ILWIS_ExerciseData\IntroRiskCity Objectives: After this exercise you will be able

More information

Fractionation_Facilities

Fractionation_Facilities Page 1 of 8 Fractionation_Facilities Shapefile Thumbnail Not Available Tags ngl, natural gas liquids, gas processing, fractionators Summary The S&P Global Platts Fractionation facilities geospatial data

More information

New Media in Landscape Architecture: Advanced GIS

New Media in Landscape Architecture: Advanced GIS New Media in Landscape Architecture: Advanced GIS - Projections and Transformations - Version 10.2, English ANHALT UNIVERSITY OF APPLIED SCIENCES Hochschule Anhalt Author: Dr. Matthias Pietsch Tutorial-Version:

More information

GIS LAB 8. Raster Data Applications Watershed Delineation

GIS LAB 8. Raster Data Applications Watershed Delineation GIS LAB 8 Raster Data Applications Watershed Delineation This lab will require you to further your familiarity with raster data structures and the Spatial Analyst. The data for this lab are drawn from

More information

Practical Manual. Introduction Geo information Science (GRS 10306) B. Kempen, W.TH. ten Haaf (Ed.)

Practical Manual. Introduction Geo information Science (GRS 10306) B. Kempen, W.TH. ten Haaf (Ed.) Laboratory of Geographical Information Science and Remote Sensing Centre for Geo Information Introduction Geo information Science (GRS 10306) Practical Manual B. Kempen, W.TH. ten Haaf (Ed.) September

More information

Downloading Census Boundary Files Using Scholars GeoPortal Map and Data Library, Summer 2016

Downloading Census Boundary Files Using Scholars GeoPortal Map and Data Library, Summer 2016 Downloading Census Boundary Files Using Scholars GeoPortal Map and Data Library, Summer 2016 This exercise will showcase how to use Scholars GeoPortal to extract Census Tract (CT) census geography for

More information

Geodatabase over Taita Hills, Kenya

Geodatabase over Taita Hills, Kenya Geodatabase over Taita Hills, Kenya Anna Broberg & Antero Keskinen Abstract This article introduces the basics of geographical information systems (GIS) and explains how the Taita Hills project can benefit

More information

Creating a Smaller Data Set from a Larger Data Set Vector Data

Creating a Smaller Data Set from a Larger Data Set Vector Data Creating a Smaller Data Set from a Larger Data Set Vector Data Written by Barbara Parmenter, revised by Carolyn Talmadge January 16, 2015 USING THE SELECTION METHOD QUICK METHOD BY CREATING A LAYER FILE...

More information

Improved Applications with SAMB Derived 3 meter DTMs

Improved Applications with SAMB Derived 3 meter DTMs Improved Applications with SAMB Derived 3 meter DTMs Evan J Fedorko West Virginia GIS Technical Center 20 April 2005 This report sums up the processes used to create several products from the Lorado 7

More information

Lecture 6: GIS Spatial Analysis. GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University

Lecture 6: GIS Spatial Analysis. GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University Lecture 6: GIS Spatial Analysis GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University 1 Spatial Data It can be most simply defined as information that describes the distribution

More information

Measure the Perimeter of Polygons Over a Surface. Operations. What Do I Need?

Measure the Perimeter of Polygons Over a Surface. Operations. What Do I Need? Measure the Perimeter of Polygons Over a Surface Operations What Do I Need? Incremental Frontage Score To measure the perimeter of polygons over a surface you need to have two input map layers. The first

More information

A Practical Guide to Using QGIS

A Practical Guide to Using QGIS A Practical Guide to Using QGIS 1.1 INTRODUCTION Quantum GIS (QGIS) is a useful mapping software that enables the compilation and displaying of spatial data in the form of a map. Gaining experience in

More information

Using GIS to Site Minimal Excavation Helicopter Landings

Using GIS to Site Minimal Excavation Helicopter Landings Using GIS to Site Minimal Excavation Helicopter Landings The objective of this analysis is to develop a suitability map for aid in locating helicopter landings in mountainous terrain. The tutorial uses

More information

5 Extract the information of location from the geometry column of PostgreSQL table

5 Extract the information of location from the geometry column of PostgreSQL table 5 Extract the information of location from the geometry column of PostgreSQL table Open QGIS and load PostGIS layer buildings and the raster layer Tai_wide_G (optional just to show the basemap). 1 Click

More information

v Overview SMS Tutorials Prerequisites Requirements Time Objectives

v Overview SMS Tutorials Prerequisites Requirements Time Objectives v. 12.2 SMS 12.2 Tutorial Overview Objectives This tutorial describes the major components of the SMS interface and gives a brief introduction to the different SMS modules. Ideally, this tutorial should

More information

Heads up Digitizing v 9.3

Heads up Digitizing v 9.3 Heads up Digitizing v 9.3 Created by Vince DiNoto Vince.dinoto@kctcs.edu Table of Contents Prerequisite... 2 Getting Started... 2 ArcCatalog ArcMap Projection... 4 Attribute Table... 6 Editor... 7 Table

More information

The GIS Spatial Data Model

The GIS Spatial Data Model The GIS Spatial Data Model Introduction: Spatial data are what drive a GIS. Every piece of functionality that makes a GIS separate from another analytical environment is rooted in the spatially explicit

More information

Esri Best Practices: QA/QC For Your Geodata. Michelle Johnson & Chandan Banerjee

Esri Best Practices: QA/QC For Your Geodata. Michelle Johnson & Chandan Banerjee Esri Best Practices: QA/QC For Your Geodata Michelle Johnson & Chandan Banerjee Overview Understand Document Implement Understanding QA/QC Understanding QA/QC Fit For Use - support your GIS applications?

More information

Pond Distance and Habitat for use in Wildlife Modeling

Pond Distance and Habitat for use in Wildlife Modeling Pond Distance and Habitat for use in Wildlife Modeling These instructions enable you to aggregate layers within a study area, calculate new fields, and create new data out of existing data, for use in

More information

Biodiversity Interactive Map

Biodiversity Interactive Map Powered by MapShare Biodiversity Interactive Map (BIM) User Tips The Biodiversity Interactive Map (BIM) is accessible via the Department of Environment and Primary Industries (DEPI) website at www.depi.vic.gov.au.

More information

Appendix 2: Random Plots Workbook: Unstratified Sample

Appendix 2: Random Plots Workbook: Unstratified Sample Appendix 2: Random Plots Workbook: Unstratified Sample These instructions will help users of all skill levels create a random sample of i-tree Eco plot centers, plot areas, and the associated i-tree Eco-required

More information

Introduction to INSPIRE. Network Services

Introduction to INSPIRE. Network Services Introduction to INSPIRE. Network Services European Commission Joint Research Centre Institute for Environment and Sustainability Digital Earth and Reference Data Unit www.jrc.ec.europa.eu Serving society

More information

Quick Guide to MapWindow GIS Desktop Application

Quick Guide to MapWindow GIS Desktop Application Quick Guide to MapWindow 1 Quick Guide to MapWindow GIS Desktop Application Version 2 January 2007 Adapted by Tom Croft. This is a summary user guide for commonly used tools and capabilities and does not

More information

v SMS 11.1 Tutorial Overview Time minutes

v SMS 11.1 Tutorial Overview Time minutes v. 11.1 SMS 11.1 Tutorial Overview Objectives This tutorial describes the major components of the SMS interface and gives a brief introduction to the different SMS modules. It is suggested that this tutorial

More information

Module 10 Data-action models

Module 10 Data-action models Introduction Geo-Information Science Practical Manual Module 10 Data-action models 10. INTRODUCTION 10-1 DESIGNING A DATA-ACTION MODEL 10-2 REPETITION EXERCISES 10-6 10. Introduction Until now you have

More information

Release Notes. Spectrum Spatial Analyst Version 8.0. Contents:

Release Notes. Spectrum Spatial Analyst Version 8.0. Contents: Location Intelligence Spectrum Spatial Analyst Version 8.0 This document contains information about Pitney Bowes Spectrum Spatial Analyst Release 8.0. Contents: What s new in Spectrum Spatial Analyst?

More information

Mississippi Public Schools 2015

Mississippi Public Schools 2015 Mississippi Public Schools 2015 Shapefile and geodatabase Tags education, administrative, schools, public, K-12 Summary To add to the state data clearinghouse the Mississippi public schools point feature.

More information

Making Topographic Maps

Making Topographic Maps T O P O Applications N Making Topographic Maps M A P S Making Topographic Maps with TNTmips page 1 Before Getting Started TNTmips provides a variety of tools for working with map data and making topographic

More information

For each use case, the business need, usage scenario and derived requirements are stated. 1.1 USE CASE 1: EXPLORE AND SEARCH FOR SEMANTIC ASSESTS

For each use case, the business need, usage scenario and derived requirements are stated. 1.1 USE CASE 1: EXPLORE AND SEARCH FOR SEMANTIC ASSESTS 1 1. USE CASES For each use case, the business need, usage scenario and derived requirements are stated. 1.1 USE CASE 1: EXPLORE AND SEARCH FOR SEMANTIC ASSESTS Business need: Users need to be able to

More information

Experience federating the metadata catalogue of IGN in the Spanish Open Data Portal

Experience federating the metadata catalogue of IGN in the Spanish Open Data Portal Experience federating the metadata catalogue of IGN in the Spanish Open Data Portal Paloma Abad E. López, A.F. Rodríguez, A. Sánchez, S. Castro, S. Soriano, J.I Sánchez 1 Summary IGN Metadata Catalogue

More information

Lab.4 & Assignment 2. Lab4. Conversion of Hardcopy Map to ArcGIS Map

Lab.4 & Assignment 2. Lab4. Conversion of Hardcopy Map to ArcGIS Map EATS4400 GIS Lab.4 & Assignment 2 Lab4 Conversion of Hardcopy Map to ArcGIS Map In this lab exercise you will have chance to go through the steps to convert hardcopy map into digital map for ArcGIS. Digitizing

More information

Framework specification, logical architecture, physical architecture, requirements, use cases.

Framework specification, logical architecture, physical architecture, requirements, use cases. Title: A5.2-D3 3.3.1 Alignment Editor Specification Editor(s)/Organisation(s): Thorsten Reitz (Fraunhofer IGD) Contributing Authors: Thorsten Reitz (Fraunhofer IGD), Marian de Vries (TUD) References: A1.8-D4

More information

Lab 2. Vector and raster data.

Lab 2. Vector and raster data. Lab 2. Vector and raster data. The goal: To learn about the structure of the vector and raster data types. Objective: Create vector and raster datasets and visualize them. Software for the lab: ARCINFO,

More information

BAEN 673 Biological and Agricultural Engineering Department Texas A&M University ArcSWAT / ArcGIS 10.1 Example 2

BAEN 673 Biological and Agricultural Engineering Department Texas A&M University ArcSWAT / ArcGIS 10.1 Example 2 Before you Get Started BAEN 673 Biological and Agricultural Engineering Department Texas A&M University ArcSWAT / ArcGIS 10.1 Example 2 1. Open ArcCatalog Connect to folder button on tool bar navigate

More information

LSGI 521: Principles of GIS. Lecture 5: Spatial Data Management in GIS. Dr. Bo Wu

LSGI 521: Principles of GIS. Lecture 5: Spatial Data Management in GIS. Dr. Bo Wu Lecture 5: Spatial Data Management in GIS Dr. Bo Wu lsbowu@polyu.edu.hk Department of Land Surveying & Geo-Informatics The Hong Kong Polytechnic University Contents 1. Learning outcomes 2. From files to

More information

1. CONCEPTUAL MODEL 1.1 DOMAIN MODEL 1.2 UML DIAGRAM

1. CONCEPTUAL MODEL 1.1 DOMAIN MODEL 1.2 UML DIAGRAM 1 1. CONCEPTUAL MODEL 1.1 DOMAIN MODEL In the context of federation of repositories of Semantic Interoperability s, a number of entities are relevant. The primary entities to be described by ADMS are the

More information

Open Geospatial Consortium

Open Geospatial Consortium Open Geospatial Consortium Date: 28-March-2011 Reference number of this document: 10-195 Editors: OGC Aviation Domain Working Group Requirements for Aviation Metadata Copyright 2011 Open Geospatial Consortium.

More information

GIS Virtual Workshop: Buffering

GIS Virtual Workshop: Buffering This workshop will teach the different methods of buffering data. They will include: Basic buffering of data Merging buffering zones Clipping the buffer Concentric rings around the object You will find

More information

Stream network delineation and scaling issues with high resolution data

Stream network delineation and scaling issues with high resolution data Stream network delineation and scaling issues with high resolution data Roman DiBiase, Arizona State University, May 1, 2008 Abstract: In this tutorial, we will go through the process of extracting a stream

More information

Building Vector Layers

Building Vector Layers Building Vector Layers in QGIS Introduction: Spatially referenced data can be separated into two categories, raster and vector data. This week, we focus on the building of vector features. Vector shapefiles

More information

Startup. Why are you here? What are your experiences? What are your major working/research topics? What do you want to learn?

Startup. Why are you here? What are your experiences? What are your major working/research topics? What do you want to learn? Startup Why are you here? What are your experiences? What are your major working/research topics? What do you want to learn? Introduction to Geographic information systems Description of a GIS GIS is a

More information

Classify Multi-Spectral Data Classify Geologic Terrains on Venus Apply Multi-Variate Statistics

Classify Multi-Spectral Data Classify Geologic Terrains on Venus Apply Multi-Variate Statistics Classify Multi-Spectral Data Classify Geologic Terrains on Venus Apply Multi-Variate Statistics Operations What Do I Need? Classify Merge Combine Cross Scan Score Warp Respace Cover Subscene Rotate Translators

More information

8 Dataset-level metadata

8 Dataset-level metadata 8 Dataset-level metadata This section specifies dataset-level metadata elements, which should be used for documenting metadata for a complete dataset or dataset series. NOTE Metadata can also be reported

More information

The European Soil Data Centre, the European Soil Bureau Network and INSPIRE Data Specifications for Soil

The European Soil Data Centre, the European Soil Bureau Network and INSPIRE Data Specifications for Soil The European Soil Data Centre, the European Soil Bureau Network and INSPIRE Data Specifications for Soil Marc Van Liedekerke, Panos Panagos, Luca Montanarella Land Management and Natural Harzards Unit

More information

Elec_ISO_LMP_PricingPoints

Elec_ISO_LMP_PricingPoints Page 1 of 7 Elec_ISO_LMP_PricingPoints Shapefile Tags locational marginal pricing, lmp, independent system operator, iso, nodal, trade, market Summary The S&P Global Platts ISO Nodal Pricing Points geospatial

More information

DATA MODELS FOR MACHU. Legislation CONCEPT

DATA MODELS FOR MACHU. Legislation CONCEPT DATA MODELS FOR MACHU Legislation CONCEPT 1 November 2016 Content 1. WHY USE MACHU DATA MODELS?... 3 2. FORMAT CHARACTERISTICS... 4 3. DATA MODEL DESCRIPTION OF THE LEGISLATION LAYER... 5 4 METADATA FORMATS...

More information

FSP TRACKING SYSTEM. FSP ESF Submission Guide. Ministry of Forests and Range Information Management Group Date: June 15 th, 2008

FSP TRACKING SYSTEM. FSP ESF Submission Guide. Ministry of Forests and Range Information Management Group Date: June 15 th, 2008 FSP TRACKING SYSTEM FSP ESF Submission Guide Client: Ministry of Forests and Range Information Management Group Date: June 15 th, 2008 Revision: 7 (Rls1.3) Vivid Solutions Inc. Suite #1A, 2328 Government

More information

Feature Enhancements by Release

Feature Enhancements by Release Autodesk Map Feature Enhancements by Release This document highlights the feature enhancements that have occurred with each release of Autodesk Map software from Release 4 (2000i) through the current 2004

More information

Use of open-source GIS for the preprocessing of distributed hydrological. models

Use of open-source GIS for the preprocessing of distributed hydrological. models Use of open-source GIS for the preprocessing of distributed hydrological models F. Branger, I. Braud, S. Debionne, J. Dehotin, S. Jankowfsky, O. Vannier, P. Viallet Who are we? Cemagref Hydrology-Hydraulics

More information

Lesson 4: Training Model & User Interface Components

Lesson 4: Training Model & User Interface Components Lesson 4: Training Model & User Interface Components 1 Infrastructure/Supply Data Highway Networks Intersection Data Transit Networks User/Demand Data Zonal Data Matrices Other Databases Visualization

More information

How to Create a European INSPIRE Compliant Data Specification. Anja Hopfstock, BKG (Germany) Morten Borrebæk, SK (Norway)

How to Create a European INSPIRE Compliant Data Specification. Anja Hopfstock, BKG (Germany) Morten Borrebæk, SK (Norway) How to Create a European INSPIRE Compliant Data Specification Anja Hopfstock, BKG (Germany) Morten Borrebæk, SK (Norway) ESDIN Key Goals Further the ambition of the European Commission to create a European

More information

Introduction to ILWIS

Introduction to ILWIS Introduction to ILWIS Source: Cees van Westen Associated Institute of the What is ILWIS? PC-based GIS & Remote Sensing package Developed by ITC A complete package: image processing spatial analysis digital

More information