PostgreSQL/PostGIS: Interaction with Other Applications

Size: px
Start display at page:

Download "PostgreSQL/PostGIS: Interaction with Other Applications"

Transcription

1 PostgreSQL/PostGIS: Interaction with Other Applications

2 PostgreSQL/PostGIS Support While PostgreSQL and PostGIS are useful for storing and managing geospatial data and attributes associated with those data, the data stored in the database achieve their value through use in other applications. GRASS MapServer udig GeoTools, GeoServer Quantum GIS OGR Safe Software FME Cadcorp SIS IONIC RedSpider others... 2

3 Data Query/Import/Export with OGR The OGR vector data library includes support for read/write access to PostGIS enabled PostgreSQL databases. If the version of OGR on your system supports PostGIS, you will see a listing for PostgreSQL in the output of the ogrinfo --formats command. > ogrinfo --formats... -> PostgreSQL (read/write)... If your version of OGR supports PostgreSQL/PostGIS, you may use the ogrinfo and ogr2ogr commands to query a local or remote PostGIS/PostgreSQL server 3

4 Data Query with OGR The available PostGIS tables (layers) available from a specified database server may be obtained through a basic ogrinfo query. > ogrinfo -ro PG:'host=db.archaeoworld.com user=geog499 password=boguspw dbname=gnis' INFO: Open of `PG:host=db.archaeoworld.com user=geog499 password=boguspw dbname=gnis' using driver `PostgreSQL' successful. : fips55_geom Early versions of OGR did not access the geometry_columns table for information about geospatial tables, and therefore provide listings of system tables and spatial tables in the specified database. 4

5 Data Query with OGR Once the name of the layer(s) in the specified database have been determined, the summary layer attributes may be obtained using ogrinfo -s. > ogrinfo -ro -s PG:'host=db.archaeoworld.com user=geog499 password=******** dbname=gnis' fips55_geom INFO: Open of `PG:host=db.archaeoworld.com user=geog499 password=******** dbname=gnis' using driver `PostgreSQL' successful. Layer name: fips55_geom Geometry: Unknown (any) Feature Count: Extent: ( , ) - ( , ) <continued...> 5

6 Data Query with OGR More output... > Layer SRS WKT: GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84", , , AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree", , AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","4326"]] fips55_uid: Integer (0.0) feat_class: String (0.0) feat_name: String (0.0) fips_class: String (0.0) state_alpha: String (0.0) county_name: String (0.0) 6

7 Data Import with OGR OGR provides an efficient mechanism for importing data into PostgreSQL/PostGIS through the ogr2ogr command line utility. In essence, the import is accomplished through the conversion of one data format (i.e. shapefile) to another format (PostgreSQL/PostGIS) > ogr2ogr -f PostgreSQL PG:'host=db.archaeoworld.com user=geog499 dbname=geog499' -a_srs EPSG:4326 tgrcnty00shp tgrcnty0 This command imports a shapefile representing the New Mexico counties into PostgreSQL/PostGIS. To import the data, the required connection information for the database must be provided: PG:'host=db.archaeoworld.com user=geog499 dbname=geog499' 7

8 Data Import with OGR Since the provided shapefile does not have an associated.prj file (defining the projection of the dataset), the destination coordinate system must be specified in the command: -a_srs EPSG:4326 Finally, the source dataset and layer are provided to specify the exact data to be imported. tgrcnty00shp tgrcnty0 8

9 Data Import with OGR The result of this import may be checked through execution of the ogrinfo command: > ogrinfo -s PG:'host=db.archaeoworld.com user=geog499 dbname=geog499' tgrcnty0 INFO: Open of `PG:host=db.archaeoworld.com user=geog499 dbname=geog499' using driver `PostgreSQL' successful. Layer name: tgrcnty0 Geometry: Unknown (any) Feature Count: 34 Extent: ( , ) - ( , ) <continued...> 9

10 Data Import with OGR Additional output... Layer SRS WKT: GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84" , , AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree", , AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","4326"]] area: Real (13.3) perimeter: Real (13.3) tgr_: Integer (11.0) tgr_id: Integer (11.0) fipsstco: String (5.0) fips: String (3.0) county: String (66.0) 10

11 OGR Where Clauses Queries against an OGR dataset based upon PostgreSQL/ PostGIS may provide an SQL where clause that limits the information returned to those records that match the specified where clause > ogrinfo -s PG:'host=db.archaeoworld.com user=geog499 dbname=geog499' -where "county = 'Bernalillo'" tgrcnty0 INFO: Open of `PG:host=db.archaeoworld.com user=geog499 dbname=geog499' using driver `PostgreSQL' successful. Layer name: tgrcnty0 Geometry: Unknown (any) Feature Count: 1 Extent: ( , ) - ( , ) <continued...> 11

12 OGR Where Clauses Additional Output Layer SRS WKT: GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84", , , AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree", , AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","4326"]] area: Real (13.3) perimeter: Real (13.3) tgr_: Integer (11.0) tgr_id: Integer (11.0) fipsstco: String (5.0) fips: String (3.0) county: String (66.0) 12

13 Exporting PostGIS data with OGR The process of exporting data from PostgreSQL/PostGIS also uses ogr2ogr to essentially convert data from the PostgreSQL/ PostGIS format to another format (like shapefile or GML). > ogr2ogr -f GML tgrcnty0.gml PG:'host=db.archaeoworld.com user=geog499 dbname=geog499' -where "county = 'Bernalillo'" tgrcnty0 This command will access the tgrcnty0 table in PostgreSQL/ PostGIS, extract the record(s) that meet the specification in the where clause, retrieve those records, and output a GML document that contains the retrieved data. 13

14 Exporting PostGIS data with OGR The resulting GML file contains the following: <?xml version="1.0" encoding="utf-8"?> <ogr:featurecollection xmlns:xsi=" xsi:schemalocation=". tgrcnty0.xsd" xmlns:ogr=" xmlns=" xmlns:gml=" <gml:boundedby> <gml:box> <gml:coord><gml:x> </ gml:x><gml:y> </gml:y></gml:coord> <gml:coord><gml:x> </ gml:x><gml:y> </gml:y></gml:coord> </gml:box> </gml:boundedby> <continued...> 14

15 Exporting PostGIS data with OGR More output <gml:featuremember> <tgrcnty0 fid="0"> <area> <perimeter> <tgr_>17</tgr_> <tgr_id>16</tgr_id> 0.299</area> <fipsstco>35001</fipsstco> <fips>1 </fips> <county>bernalillo </county> 2.703</perimeter> 15

16 Exporting PostGIS data with OGR More output <ogr:geometryproperty><gml:polygon><gml:outerboundaryis><gml: LinearRing><gml:coordinates> , , , , , , , </gml:coordinates></ gml:linearring></gml:outerboundaryis></gml:polygon></ ogr:geometryproperty> </tgrcnty0> </gml:featuremember> </ogr:featurecollection> 16

17 Data Visualization and Management in GRASS GRASS has a number of tools for interacting with PostgreSQL/ PostGIS ps.postgisdb - A command that may be used to create and destroy PostGIS databases. db.connect and v.db.connect - Commands that establish a database connection and link a vector map to a database table (for attributes only) v.in.ogr - Import an OGR supported dataset into GRASS v.external - Create a read-only connection to an external OGR supported dataset Key to GRASS ability to interact with PostGIS enabled PostgreSQL databases depends upon how GRASS was built (enabling PostgreSQL support) and the formats supported by a specific installation of OGR (try ogrinfo --formats). 17

18 GRASS Data Import from PostGIS External PostgreSQL/PostGIS data may be imported into GRASS for use as a local dataset by executing the v.in.ogr command, using the correct OGR connection specification to define the database to be accessed. > v.in.ogr dsn=pg:'host=db.archaeoworld.com user=geog499 dbname=geog499' layer=tgrcnty0 output=tgrcnty0 location=geo_wgs84 This command will import the layer (table) tgrcnty0 from the class database (specified with the PG specification in the dsn), create a new location named geo_wgs84 and import the data into a layer named tgrcnty0 in that new location. 18

19 GRASS Data Import from PostGIS The imported data may be visualized by first opening GRASS using the newly created location, then entering the standard display commands: > d.mon start=x0 using default visual which is TrueColor ncolors: Graphics driver [x0] started > d.vect map=tgrcnty0 19

20 Display of External PostGIS Data in GRASS External PostgreSQL/PostGIS data may be displayed in GRASS (with other local or remote GRASS data) through use of the v.external GRASS command. This command creates a read-only linkage to the external data source and retrieves the data when requested for display or analysis. > v.external dsn=pg:'host=db.archaeoworld.com user=geog499 dbname=geog499' output=tgrcnty0_external layer=tgrcnty0 In contrast to the previously executed v.in.ogr command, this command registers an external connection to the specified database (defined by the dsn) and layer (specified by the layer parameter), and names the connection according to the output parameter. This layer may then be accessed like other GRASS vector datasets, but will be based upon the current data in the database. 20

21 Display of External PostGIS Data in GRASS A standard d.vect command results in the following: Which is the same result as displaying the data that were imported into GRASS. 21

22 Display of External PostGIS Data in GRASS Caveats: The version of GRASS on the class disks generates an error message when creating the connection and when displaying the data ERROR 1: ERROR: column "fid" does not exist While this error is not necessarily fatal, it may impact the display of some vector objects. The problem is supposed to have been addressed in the current GRASS release. 22

Boundless Desktop Documentation

Boundless Desktop Documentation Boundless Desktop Documentation Release 1.0.0 Boundless Sep 20, 2017 Contents 1 What is Boundless Desktop? 1 2 System requirements 3 2.1 Windows system requirements......................................

More information

SPECIFICATION FOR GMT VECTOR DATA FORMAT FOR OGR COMPATABILITY. DRAFT v0.2. Brent Wood

SPECIFICATION FOR GMT VECTOR DATA FORMAT FOR OGR COMPATABILITY. DRAFT v0.2. Brent Wood SPECIFICATION FOR GMT VECTOR DATA FORMAT FOR OGR COMPATABILITY DRAFT v0.2 Brent Wood pcreso@pcreso.com Background. The National Institute for Water and Atmospheric Research (NIWA) in New Zealand is funding

More information

Map Types Used. Topographical map (1:10 000, 1: ) Land Cadastre Map (1: ) Utility base map (1:500) Joint utility map (1:500)

Map Types Used. Topographical map (1:10 000, 1: ) Land Cadastre Map (1: ) Utility base map (1:500) Joint utility map (1:500) Map Types Used Topographical map (1:10 000, 1:200 000) Land Cadastre Map (1:1000-1-4000) Utility base map (1:500) Joint utility map (1:500) Detailed utility map (1:500) Town development plan (map) (1:1000-1:10000)

More information

Introduction to the Dimensionally Extended 9 Intersection Model (DE-9IM) in PostgreSQL/PostGIS Tutorial

Introduction to the Dimensionally Extended 9 Intersection Model (DE-9IM) in PostgreSQL/PostGIS Tutorial Introduction to the Dimensionally Extended 9 Intersection Model (DE-9IM) in PostgreSQL/PostGIS Tutorial Germán Carrillo gcarrillo@uni-muenster.de geotux_tuxman@linuxmail.org Objectives Following this tutorial

More information

Spatial Reference Systems Transformations with Boost.Geometry

Spatial Reference Systems Transformations with Boost.Geometry Spatial Reference Systems Transformations with Boost.Geometry Adam Wulkiewicz Software Engineer at MySQL Spatial reference system A spatial reference system (SRS) or coordinate reference system (CRS) is

More information

Libraries and Utilities

Libraries and Utilities GDAL / OGR & Proj.4 Libraries and Utilities The technologies that we will discuss today are programming libraries and utility programs that have been built upon those libraries. In particular, we will

More information

Boundless Desktop Documentation

Boundless Desktop Documentation Boundless Desktop Documentation Release 1.1.0 Boundless Sep 20, 2017 Contents 1 What is Boundless Desktop? 1 2 What s new in 1.1.0 3 3 System requirements 5 3.1 Windows system requirements......................................

More information

Web Map Servers. Mark de Blois. Septembre 2016

Web Map Servers. Mark de Blois. Septembre 2016 Web Map Servers Mark de Blois Septembre 2016 Learning Objectives After this lecture you will be able to understand web map servers as used in Web-GIS applications Introduction A Web Map Server is a computer

More information

GIS Data Preparation and Conversion for the Web

GIS Data Preparation and Conversion for the Web Institute of Cartography GIS Data Preparation and Conversion for the Web Ionuț Iosifescu 17/02/2016 1 Data Preparation Workflow Data Collection Data Check Convert Data Visualize Data - Data Sources - GIS

More information

Poom Malakul Na Ayudhya

Poom Malakul Na Ayudhya DataClient 1.0.6 Manual By Poom Malakul Na Ayudhya pmalakul@gmail.com (Under Development) Page 1 Contents 1. Introduction 2. Installation 2.1. Knowledge Requirements 2.2. Software Requirements 2.3. DataClient

More information

Open source technologies and INSPIRE network services in Slovak environmental agency

Open source technologies and INSPIRE network services in Slovak environmental agency Open source technologies and INSPIRE network services in Slovak environmental agency Peter Mozolík, Martin Koška, Marek Žiačik, Martin Tuchyňa Slovak Environmental Agency (SEA) SEA role within slovak SDI

More information

PostgreSQL/PostGIS: Introduction

PostgreSQL/PostGIS: Introduction PostgreSQL/PostGIS: Introduction Introduction PostgreSQL A standards-compliant SQL-based database server with which a wide variety of client applications can communicate Server software generally, but

More information

Implementing Web GIS Solutions

Implementing Web GIS Solutions Implementing Web GIS Solutions using open source software Karsten Vennemann Seattle Talk Overview Talk Overview Why and What What is Open Source (GIS)? Why use it? Application Components Overview of Web

More information

Integrating Expert System and Geographic Information System for Spatial Decision Making

Integrating Expert System and Geographic Information System for Spatial Decision Making Western Kentucky University TopSCHOLAR Masters Theses & Specialist Projects Graduate School 12-2012 Integrating Expert System and Geographic Information System for Spatial Decision Making Sriharsha Shesham

More information

PostGIS: future developments

PostGIS: future developments PostGIS: future developments What is PostGIS GPL PostgreSQL extension for Geographic Objects Types Operators Functions Indexes Standard interfaces Extension API Current features OpenGIS Simple Features

More information

QGIS Application - Bug report #8332 QGIS uses comma as decimal separator for shapefile attribute data

QGIS Application - Bug report #8332 QGIS uses comma as decimal separator for shapefile attribute data QGIS Application - Bug report #8332 QGIS uses comma as decimal separator for shapefile attribute data 2013-07-20 09:41 AM - marisn - Status: Closed Priority: Normal Assignee: Category: Data Provider/OGR

More information

This has both postgres and postgis included. You need to enable postgis by running the following statements

This has both postgres and postgis included. You need to enable postgis by running the following statements 1 Lab 0 (2016) Installing Initial Software for Spatial Databases Course Lecturer Pat Browne This note describes how to install some of the course software on Windows 7. Lab0 only covers installation for

More information

InCLUDE Data Exchange. Julia Harrell, GISP GIS Coordinator, NC DENR

InCLUDE Data Exchange. Julia Harrell, GISP GIS Coordinator, NC DENR InCLUDE Data Exchange Julia Harrell, GISP GIS Coordinator, NC DENR Julia.harrell@ncdenr.gov InCLUDE Project Partners NC Department of Environment & Natural Resources: The State of NC s lead environmental

More information

Oracle Spatial Users Conference

Oracle Spatial Users Conference April 2006 April 27, 2006 Tampa Convention Center Tampa, Florida, USA April 2006 Michael Smith Physical Scientist Remote Sensing/GIS Center of Expertise Army Corps of Engineers Engineer Research & Development

More information

InCLUDE Data Exchange. Julia Harrell, GISP GIS Coordinator, NC DENR

InCLUDE Data Exchange. Julia Harrell, GISP GIS Coordinator, NC DENR InCLUDE Data Exchange Julia Harrell, GISP GIS Coordinator, NC DENR Julia.harrell@ncdenr.gov InCLUDE Project Partners NC Department of Environment & Natural Resources: The State of NC s lead environmental

More information

ewater SDI for water resource management

ewater SDI for water resource management PROJECT GEONETCAST WS 2009/2010 ewater SDI for water resource management Technical Documentation Theresia Freska Utami & Wu Liqun 2/12/2010 I. GEONETWORK 1. Installation e-water uses the software package

More information

GRASS. Geographic Resources Analysis Support System Current versions. Related software

GRASS. Geographic Resources Analysis Support System  Current versions. Related software GRASS Geographic Resources Analysis Support System http://grass.osgeo.org Current versions 6.3 stable (old) 6.4 next stable (new) 7 development (future) Related software QGIS http://qgis.org GRASS Capabilities

More information

Schema transformations in mass data harmonization process. Yohann Ly 8/9 Octobre 2013 Marne la Vallée

Schema transformations in mass data harmonization process. Yohann Ly 8/9 Octobre 2013 Marne la Vallée Schema transformations in mass data harmonization process Yohann Ly 8/9 Octobre 2013 Marne la Vallée Mass data harmonization process Problematic : Multiple data providers Multiple storage format Multiple

More information

Who are we? Randal Hale. Nathan Saylor. GIS Coordinator for Hardin Co. Owner of North River Geographic Systems. Consultant. Owner of Saylor Mapping

Who are we? Randal Hale. Nathan Saylor. GIS Coordinator for Hardin Co. Owner of North River Geographic Systems. Consultant. Owner of Saylor Mapping Who are we? Nathan Saylor Randal Hale GIS Coordinator for Hardin Co. Owner of North River Geographic Systems Owner of Saylor Mapping Consultant Been doing GIS since 2005 Been in the GIS Industry 20 something

More information

GeoServer and Teradata

GeoServer and Teradata OpenGeo Version 1.0, July 2011 GeoServer and Teradata Your Geospatial Data Served on the Web Introduction What We ll Accomplish What is GeoServer? Installing GeoServer GeoServer Web Admin Interface Installing

More information

Beyond PostGIS. New developments in Open Source Spatial Databases. Karsten Vennemann. Seattle

Beyond PostGIS. New developments in Open Source Spatial Databases. Karsten Vennemann. Seattle New developments in Open Source Spatial Databases Karsten Vennemann Seattle Talk Overview Intro Relational Databases PostGIS JASPA INGRES Geospatial MySQL Spatial Support HatBox a user space extension

More information

Introduction to basic GIS. International Federation of Red Cross and Red Crescent Societies Information Management Team. September 2017 Version 1.

Introduction to basic GIS. International Federation of Red Cross and Red Crescent Societies Information Management Team. September 2017 Version 1. Introduction to basic GIS International Federation of Red Cross and Red Crescent Societies Information Management Team September 2017 Version 1.0 Introduction This is a basic GIS guidance document created

More information

Oregon Coastal Atlas. Photo: Laurel Hillmann, OPRD

Oregon Coastal Atlas.  Photo: Laurel Hillmann, OPRD Oregon Coastal Atlas www.coastalatlas.net Photo: Laurel Hillmann, OPRD Background Coastal Atlas Project launched 2001 Multi group project involving Oregon State University Geosciences, Ecotrust and Oregon

More information

Using ESRI data in Autodesk ISD Products

Using ESRI data in Autodesk ISD Products GI13-3 Using ESRI data in Autodesk ISD Products 1.5 hr. Class 02-Dec-03 3:30pm - 5:00pm Session Description: We will focus on using data in a variety of ESRI formats within the Autodesk GIS product line,

More information

QGIS Application - Bug report #377 custom projection of GRASS vectors

QGIS Application - Bug report #377 custom projection of GRASS vectors QGIS Application - Bug report #377 custom projection of GRASS vectors 2006-11-10 06:51 AM - lami-faunalia-it - Status: Closed Priority: Low Assignee: Magnus Homann Category: GRASS Affected QGIS version:

More information

Reading and Writing Vector Data with OGR

Reading and Writing Vector Data with OGR Reading and Writing Vector Data with OGR Open Source RS/GIS Python Week 1 OS Python week 1: Reading & writing vector data [1] Pros Why use open source? Affordable for individuals or small companies Very

More information

Validation Language. GeoConnections Victoria, BC, Canada

Validation Language. GeoConnections Victoria, BC, Canada Validation Language Submitted To: Program Manager GeoConnections Victoria, BC, Canada Submitted By: Jody Garnett Brent Owens Refractions Research Inc. Suite 400, 1207 Douglas Street Victoria, BC, V8W-2E7

More information

Introduction to GDAL/OGR

Introduction to GDAL/OGR Introduction to GDAL/OGR Johannes van der Kwast UNESCO-IHE Institute for Water Education E-mail: j.vanderkwast@unesco-ihe.org Version 3.1, September 2015 OpenCourseWare 1 Contents 1 Introduction... 3 1.1

More information

SDI Tecnological Components and Standards

SDI Tecnological Components and Standards SDI Tecnological Components and Standards Salvador Bayarri sbayarri@gmail.com World Bank Consultant Contents The SDI architecture model Software components: the SDI stack Basic services Metadata SDI access

More information

Introduction to Quantum GIS

Introduction to Quantum GIS Connecting To PostgreSQL / PostGIS Dr. Arthur J Lembo Jr., Eric Flint, John O'Brien, Alex Nohe 3/19/2013 Quantum GIS is a fully functional and modern Open Source desktop GIS package. This introduction

More information

Introduction to GeoServer

Introduction to GeoServer Tutorial ID: This tutorial has been developed by BVIEER as part of the IGET web portal intended to provide easy access to geospatial education. This tutorial is released under the Creative Commons license.

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 2.0 NOTICE: Copyright Pitney Bowes 2017. All Rights Reserved. 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics...

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 2.3 NOTICE: Copyright Pitney Bowes 2019. All Rights Reserved. 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics...

More information

u D i g W a l k t h r o u g h 2 E d i t w i t h u D i g a n d W F S - T

u D i g W a l k t h r o u g h 2 E d i t w i t h u D i g a n d W F S - T E di t wi th ud ig a nd WFS -T Table of Contents 1 Introduction... 3 2 WMS and WFS Integration... 4 3 Editing Geometry with WFS... 8 4 Working with Attributes... 11 5 Exporting to Shape file... 14 6 Take

More information

MicroStation. FDO Reader USER S MANUAL. [Företagets adress]

MicroStation. FDO Reader USER S MANUAL. [Företagets adress] MicroStation FDO Reader USER S MANUAL [Företagets adress] MicroStation FDO Reader - User s Manual, 2018-10-27 copyright, 2018 ringduvevägen 13, 132 47 saltsjö-boo e-mail: consulting@surell.se, web: www.surell.se

More information

Quantum GIS. User Guide. Version Mimas

Quantum GIS. User Guide. Version Mimas Quantum GIS User Guide Version 1.3.0 Mimas Preamble This document is the original user guide of the described software Quantum GIS. The software and hardware described in this document are in most cases

More information

An Introduction to Data Interoperability

An Introduction to Data Interoperability Esri International User Conference San Diego, California 2012 Technical Workshops July 24/25 An Introduction to Data Interoperability Bruce Harold - Esri Dale Lutz Safe Software Background Why Data Interoperability?

More information

Gebietsabgrenzung Koordinatenbezogene Grenzen des Naturschutzgebietes "Ettenau II" im GML-Standard

Gebietsabgrenzung Koordinatenbezogene Grenzen des Naturschutzgebietes Ettenau II im GML-Standard Anlage 2/1 zur Verordnung der Oö. Landesregierung, mit der das Gebiet "Ettenau II" als Naturschutzgebiet festgestellt und mit der ein Landschaftspflegeplan für dieses Gebiet erlassen wird, LGBl.Nr. 49/2011

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

User Friendly Desktop Internet GIS (udig) for OpenGIS Spatial Data Infrastructures

User Friendly Desktop Internet GIS (udig) for OpenGIS Spatial Data Infrastructures User Friendly Desktop Internet GIS (udig) for OpenGIS Spatial Data Infrastructures PART A Solicitation #: Client Reference #: 23516-03GEOI/A 23516-3-GEOI GeoInnovations Target Area: 1 (GML Tools / WFS

More information

[ ]..,ru. GeoServer Beginner's Guide. open source^ software server. Share and edit geospatial data with this open source.

[ ]..,ru. GeoServer Beginner's Guide. open source^ software server. Share and edit geospatial data with this open source. GeoServer Beginner's Guide Share and edit geospatial data with this open source software server Stefano lacovella Brian Youngblood [ ]..,ru open source^ PUBLISHING community experience distilled BIRMINGHAMMUMBAI

More information

NFMS web portals Focus on monitoring functions

NFMS web portals Focus on monitoring functions NFMS web portals Focus on monitoring functions National Forest Monitoring System web portal to disseminate forest-related geospatial data on the web Dr. Inge Jonckheere, FAO UN-REDD October 2014, Hanoi,

More information

QGIS Application - Bug report #1537 Units unknown in GRASS mapset creation for EPSG 26745

QGIS Application - Bug report #1537 Units unknown in GRASS mapset creation for EPSG 26745 QGIS Application - Bug report #1537 Units unknown in GRASS mapset creation for EPSG 26745 2009-02-11 01:33 PM - John Tull Status: Closed Priority: Low Assignee: nobody - Category: GRASS Affected QGIS version:

More information

QGIS Workshop Su Zhang and Laura Gleasner 11/10/2016. QGIS Workshop

QGIS Workshop Su Zhang and Laura Gleasner 11/10/2016. QGIS Workshop 1. Introduction to Quantum GIS (QGIS) QGIS Workshop QGIS is a free and open source Geographic Information System (GIS). QGIS can help you create, edit, visualize, and publish geospatial information on

More information

D2M2 - GIS USER'S MANUAL

D2M2 - GIS USER'S MANUAL D2M2 - GIS USER'S MANUAL USACE ERDC, July 2012 1 Content Overview of D2M2... 3 User Interface... 4 Menus... 4 File Menu... 4 Edit Menu... 5 View Menu... 5 Layer Menu... 6 Analysis Menu... 6 Tools Menu...

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 0.1 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics... 3 3. Loading the data into RDMS Databases... 3 Oracle...

More information

INSPIRE Transformation with Stetl -

INSPIRE Transformation with Stetl - INSPIRE Transformation with Stetl - A lightweight Python Framework for Geospatial ETL Just van den Broecke EuroGeographics - KEN Workshop Paris, Oct 8, 2013 www.justobjects.nl About Me Independent Open

More information

Gebietsabgrenzung Koordinatenbezogene Grenzen des Europaschutzgebietes "Tal der Kleinen Gusen" im GML-Standard

Gebietsabgrenzung Koordinatenbezogene Grenzen des Europaschutzgebietes Tal der Kleinen Gusen im GML-Standard Anlage 3/1 zur Verordnung der Oö. Landesregierung, mit der das Gebiet "Tal der Kleinen Gusen" als Europaschutzgebiet bezeichnet und mit der ein Landschaftspflegeplan für dieses Gebiet erlassen wird. LGBl.Nr.

More information

Setting up the Ihlet Social Cadastre

Setting up the Ihlet Social Cadastre Setting up the Ihlet Social Cadastre Ihlet KHT Dr. Attila Molnár, GI consultant Bela Jarolics Rome, Italy TOPICS Goal of the project Architecture Database Solution Standards, communication Metadata Security

More information

Quantum GIS. User, Installation and Coding Guide. Version Kore

Quantum GIS. User, Installation and Coding Guide. Version Kore Quantum GIS User, Installation and Coding Guide Version 1.0.0 Kore Preamble This document is the original user, installation and coding guide of the described software Quantum GIS. The software and hardware

More information

GeoTools Steering Document

GeoTools Steering Document GeoTools Steering Document Author: Jody Garnett Review/Revise: Andrea, Justin, Simone, Martin, Paul Background: The GeoTools library is going through a transition, from a project centered around the research

More information

The Butterfly Effect. A proposal for distribution and management for butterfly data programs. Dave Waetjen SESYNC Butterfly Workshop May 10, 2012

The Butterfly Effect. A proposal for distribution and management for butterfly data programs. Dave Waetjen SESYNC Butterfly Workshop May 10, 2012 The Butterfly Effect A proposal for distribution and management for butterfly data programs Dave Waetjen SESYNC Butterfly Workshop May 10, 2012 http://butterfly.ucdavis.edu Citizen Science based Observation

More information

Developing a Free and Open Source Software based Spatial Data Infrastructure. Jeroen Ticheler

Developing a Free and Open Source Software based Spatial Data Infrastructure. Jeroen Ticheler Developing a Free and Open Source Software based Spatial Data Infrastructure Jeroen Ticheler 1 License This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License.

More information

Training courses. Course Overview Details Audience Duration. Applying GIS

Training courses. Course Overview Details Audience Duration. Applying GIS Training courses (Last update: December 2017) Remarks: As part of a course a certificate is issued for each attendee. All software used during the courses is Open Source Software. Contact: allspatial Geospatial

More information

County of Los Angeles. Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) Version 2 May 2015

County of Los Angeles. Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) Version 2 May 2015 County of Los Angeles Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) Version 2 May 2015 CIO Preferred Technologies for GIS This document lists the preferred Geographic

More information

pgrouting extends the postgis/postgresql geospatial database to provide geospatial routing and other network analysis functionality.

pgrouting extends the postgis/postgresql geospatial database to provide geospatial routing and other network analysis functionality. Workshop: 1 pgrouting extends the postgis/postgresql geospatial database to provide geospatial routing and other network analysis functionality. Attendee s previous knowledge: SQL (PostgreSQL, PostGIS)

More information

An interoperable platform. rencontres mondiales du logiciel libre - july 12th, 2007

An interoperable platform. rencontres mondiales du logiciel libre - july 12th, 2007 1 An interoperable platform rencontres mondiales du logiciel libre - july 12th, 2007 Content 2 COGIT Towards a new platform: GeOxygene COGIT experience about platforms and common GIS problems Architecture

More information

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University Geographical Information Systems Institute Center for Geographic Analysis, Harvard University LAB EXERCISE 5: Queries, Joins: Spatial and Non-spatial 1.0 Getting Census data 1. Go to the American Factfinder

More information

GeoNode Intro & Demo

GeoNode Intro & Demo GeoNode Intro & Demo Cristiano Giovando - Global Facility for Disaster Reduction and Recovery, World Bank Paolo Corti - Center for Geographic Analysis, Harvard University Dynamic Mapping of Secondary Cities

More information

Data Interoperability An Introduction

Data Interoperability An Introduction 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Data Interoperability An Introduction Bruce Harold Esri Dale Lutz Safe Software Background Why Data Interoperability?

More information

Gebietsabgrenzung Koordinatenbezogene Grenzen des Europaschutzgebiets "Pfeiferanger" im GML-Standard

Gebietsabgrenzung Koordinatenbezogene Grenzen des Europaschutzgebiets Pfeiferanger im GML-Standard Anlage 2 zur Verordnung der Oö. Landesregierung, mit der das Gebiet "Pfeiferanger" als Europaschutzgebiet bezeichnet und mit der ein Landschaftspflegeplan für dieses Gebiet erlassen wird, LGBl.Nr. 22/2011

More information

NRCS Data Viewers Technical Documentation

NRCS Data Viewers Technical Documentation NRCS Data Viewers Technical Documentation Environmental Quality Index (EQI) Data Viewer ProTracts Data and Expected Benefit Viewer Tyler Erickson, Eric Keefauver May 2008 NRCS Data Viewers Technical Documentation

More information

Install Free GIS Software on Your PC

Install Free GIS Software on Your PC Install Free GIS Software on Your PC 1. Cygwin & GRASS 6.2.3 2. FWTools1.3.4 3. AVCE00-2.0.0-WIN32 4. PostgreSQL-8.2.6 including PostGIS 5. Quantum GIS 0.9.1 6. ODBC setting 7. Expat 2.0.1 (Option) 8.

More information

QGIS LAB SERIES GST 102: Spatial Analysis Lab 2: Introduction to Geospatial Analysis

QGIS LAB SERIES GST 102: Spatial Analysis Lab 2: Introduction to Geospatial Analysis QGIS LAB SERIES GST 102: Spatial Analysis Lab 2: Introduction to Geospatial Analysis Objective Understand Attribute Table Joins and Data Classification Document Version: 2014-06-16 (Beta) Contents Introduction...2

More information

OGC Simple Features (for SQL and XML/GML)

OGC Simple Features (for SQL and XML/GML) Daniel Wirz, Department of Geography - GIS Division, University of Zurich mailto:wirz@geo.unizh.ch January 2004 What,...? Introduction Develop publicly available geoprocessing specifications. Open interfaces

More information

GEOSPATIAL POWER TOOLS

GEOSPATIAL POWER TOOLS TYLER MITCHELL & GDAL DEVELOPERS GEOSPATIAL POWER TOOLS GDAL RASTER & VECTOR COMMANDS "FIRST LOOK" PREVIEW EDITION Contents I Getting Started 3 1 Book Layout 7 2 Introduction 9 3 Sample Data 13 II Common

More information

FME Extension for ArcGIS

FME Extension for ArcGIS FME Extension for ArcGIS Welcome to the FME Extension for ArcGIS The FME Extension for ArcGIS uses Safe Software's FME technology. The FME Extension for ArcGIS allows users to integrate spatial data formats

More information

Neo4j. Spatial. Peter Neubauer Neo Technology. GIS for the rest of us.

Neo4j. Spatial. Peter Neubauer Neo Technology. GIS for the rest of us. Neo4j Spatial GIS for the rest of us Peter Neubauer Neo Technology #neo4j @peterneubauer peter@neotechnology.com Data size NOSQL data models Key-value stores Bigtable clones Document databases Graph databases

More information

Introduction to Open Source GIS

Introduction to Open Source GIS Introduction to Open Source GIS a practical overview Michael Gerlek Karsten Vennemann Aaron Racicot Dane Springmeyer Cascadia Users of Geospatial Open Source Cascadia Chapter of the Open Source Geospatial

More information

Using the Network Common Data Form for storage of atmospheric data

Using the Network Common Data Form for storage of atmospheric data Using the Network Common Data Form for storage of atmospheric data Maarten Plieger Royal Netherlands Meteorological Institute The NetCDF4 data format (Network Common Data Form) is used within the ADAGUC

More information

Using Free and Open Source GIS to Automatically Create Standards- Based Spatial Metadata

Using Free and Open Source GIS to Automatically Create Standards- Based Spatial Metadata Using Free and Open Source GIS to Automatically Create Standards- Based Spatial Metadata Claire Ellul University College London Overview The Problem with Metadata Automation Results Further Work The Problem

More information

Adopting the Appropriate GIS Web Service Technologies

Adopting the Appropriate GIS Web Service Technologies Adopting the Appropriate GIS Web Service Technologies Bo Guo, PE, PhD GIS/IT Integration Consultant Gistic Research Inc. UT & AZ Jake Payne Database Administrator & Architect State of Utah Department of

More information

The VirGIS Geographic Integration System

The VirGIS Geographic Integration System The VirGIS Geographic Integration System Omar Boucelma François-Marie Colonna Mehdi Essid LSIS-CNRS, Université Paul Cézanne - Aix-Marseille Avenue Escadrille Normandie-Niemen 13397 Marseille Cedex 20

More information

A Framework of Feature-Level Transportation Geospatial Data Sharing Systems

A Framework of Feature-Level Transportation Geospatial Data Sharing Systems A Framework of Feature-Level Transportation Geospatial Data Sharing Systems Zhong-Ren Peng, Ph.D. Director Center for Advanced Spatial Information Research Associate Professor Department of Urban Planning

More information

LearnOSM. PostgreSQL & PostGIS. Installing PostgreSQL and PostGIS. Reviewed

LearnOSM. PostgreSQL & PostGIS. Installing PostgreSQL and PostGIS. Reviewed PostgreSQL & PostGIS Reviewed 2016-09-10 LearnOSM In this chapter we will see how to set up PostgreSQL on Windows and how to create a database in which you can store geographic data. We ll be using the

More information

EuroGeoSource. EU Information and Policy Support System for Sustainable Supply of Europe with Energy and Mineral Resources WP 5

EuroGeoSource. EU Information and Policy Support System for Sustainable Supply of Europe with Energy and Mineral Resources WP 5 EuroGeoSource EU Information and Policy Support System for Sustainable Supply of Europe with Energy and Mineral Resources Grant Agreement no. 250532 WP 5 Service implementation cookbook egs_wp5_cookbook-v2.1.doc

More information

MST: Converting from Shape file to PostGIS using FME. Version 0.2

MST: Converting from Shape file to PostGIS using FME. Version 0.2 MST: Converting from Shape file to PostGIS using FME Version 0.2 Revisions Filename ConvertingFromShape2PostGIS_v0.1.docx Project Document Version Control Vs. Date Author Change Details 0.2 08-01-2018

More information

Introduction THE OPENGEO ARCHITECTURE

Introduction THE OPENGEO ARCHITECTURE Introduction Putting maps on the web used to be very very difficult. It required specialized software, and more important, specialized knowledge about the kinds of data and processes used to create cartographic

More information

Development of Java Plug-In for Geoserver to Read GeoRaster Data. 1. Baskar Dhanapal CoreLogic Global Services Private Limited, Bangalore

Development of Java Plug-In for Geoserver to Read GeoRaster Data. 1. Baskar Dhanapal CoreLogic Global Services Private Limited, Bangalore Development of Java Plug-In for Geoserver to Read GeoRaster Data 1. Baskar Dhanapal CoreLogic Global Services Private Limited, Bangalore 2. Bruce Thelen CoreLogic Spatial Solutions, Austin, USA 3. Perumal

More information

OPEN SOURCE SOLUTIONS FOR SURVEYORS

OPEN SOURCE SOLUTIONS FOR SURVEYORS 2 nd Sabah International Surveyors Congress 11 th 12 th March 2014 OPEN SOURCE SOLUTIONS FOR SURVEYORS Presented By : Sr Alexander Chong Director, Jurukur Antarabangsa The Benefits Of Closed Proprietary

More information

Zonal Statistics in PostGIS a Tutorial

Zonal Statistics in PostGIS a Tutorial 2014 Brian J McGill. You are welcome to link to this tutorial but not copy or repost. Feedback is welcome and should be sent to mail AT brianmcgill DOT org Zonal Statistics in PostGIS a Tutorial Zonal

More information

Exploring Open Source GIS Programming. Scott Parker, Katie Urey, Jack Newlevant, Mele Sax-Barnett

Exploring Open Source GIS Programming. Scott Parker, Katie Urey, Jack Newlevant, Mele Sax-Barnett Exploring Open Source GIS Programming Scott Parker, Katie Urey, Jack Newlevant, Mele Sax-Barnett When to write a program When you expect your tool to have multiple uses and/or multiple iterations Something

More information

VISUALIZATION, STATISTICAL ANALYSIS, AND MINING OF HISTORICAL VESSEL DATA

VISUALIZATION, STATISTICAL ANALYSIS, AND MINING OF HISTORICAL VESSEL DATA VISUALIZATION, STATISTICAL ANALYSIS, AND MINING OF HISTORICAL VESSEL DATA by Sabarish Senthilnathan Muthu Bachelor of Engineering College of Engineering, Guindy, Anna University, India, 2010 A Thesis Submitted

More information

The new GRASS 5.1 vector architecture

The new GRASS 5.1 vector architecture Proceedings of the Open source GIS GRASS users conference 2002 Trento, Italy, 11-13 September 2002 The new GRASS 5.1 vector architecture Radim Blazek, Markus Neteler, Roberto Micarelli ITC-irst, Via Sommarive,

More information

Lecture 8. Database Management and Queries

Lecture 8. Database Management and Queries Lecture 8 Database Management and Queries Lecture 8: Outline I. Database Components II. Database Structures A. Conceptual, Logical, and Physical Components III. Non-Relational Databases A. Flat File B.

More information

Leveraging OGC Services in ArcGIS Server. Satish Sankaran, Esri Yingqi Tang, Esri

Leveraging OGC Services in ArcGIS Server. Satish Sankaran, Esri Yingqi Tang, Esri Leveraging OGC Services in ArcGIS Server Satish Sankaran, Esri Yingqi Tang, Esri GIS Creating and Managing Geo Information Products - Proprietary - Open Specifications - Standards Dissemination of Geo

More information

Pilot Group IPR - Air Quality. Wet tests XML UTD and Zones Feedback from France

Pilot Group IPR - Air Quality. Wet tests XML UTD and Zones Feedback from France Pilot Group IPR - Air Quality Wet tests XML UTD and Zones Feedback from France Contents 1. French context 2. Wet tests 1. Zones Talend and WFS 2. Zones Talend and MySQL 3. UTD Talend and MySQL 4. Zones

More information

udig User friendly Desktop Internet GIS Final Report

udig User friendly Desktop Internet GIS Final Report udig User friendly Desktop Internet GIS Final Report Submitted To: Program Manager GeoConnections Victoria, BC, Canada Submitted By: Jody Garnett Refractions Research Inc. Suite 400 1207 Douglas Street

More information

Maps for Spatial Data Infrastructures (Service-Oriented Web Mapping)

Maps for Spatial Data Infrastructures (Service-Oriented Web Mapping) Maps for Spatial Data Infrastructures (Service-Oriented Web Mapping) Ionuț Iosifescu 1 Spatial Data Infrastructures?!? Image courtesy of INSPIRE 2 Image courtesy of swisstopo 3 Spatial Data Infrastructures

More information

University of California, Los Angeles Department of Statistics

University of California, Los Angeles Department of Statistics Statistics C173/C273 University of California, Los Angeles Department of Statistics Instructor: Nicolas Christou Introduction to Geographical Resources Analysis Support System (GRASS) General information:

More information

Serving Southeast Asia Topographic Atlas on The Web: An Open Source Free Software Approach

Serving Southeast Asia Topographic Atlas on The Web: An Open Source Free Software Approach PNC, Nov. 8 th, 2003 Serving Southeast Asia Topographic Atlas on The Web: An Open Source Free Software Approach Xianfeng SONG and Yasuyuki KONO Center for Southeast Asian Studies, Kyoto University Email:

More information

QGIS Application - Bug report #1875 A few problems with crs definitions with TOWGS parameters

QGIS Application - Bug report #1875 A few problems with crs definitions with TOWGS parameters QGIS Application - Bug report #1875 A few problems with crs definitions with TOWGS parameters 2009-08-14 06:58 AM - Giovanni Manghi Status: Closed Priority: Low Assignee: Magnus Homann Category: Projection

More information

Spatial Databases - a look into the future

Spatial Databases - a look into the future Spatial Databases - a look into the future Mario Miler and Damir Medak Faculty of Geodesy University of Zagreb November 26, 2010 Contents Introduction Spatial databases geography data type curves raster

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