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

Size: px
Start display at page:

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

Transcription

1 Map Types Used Topographical map (1:10 000, 1: ) Land Cadastre Map (1: ) Utility base map (1:500) Joint utility map (1:500) Detailed utility map (1:500) Town development plan (map) (1:1000-1:10000) Town restriction plan (map) (1:1000-1:10000) Orthophoto, satellite image

2 Vector and raster data representation Vectors Smaller data sets Unlimited resolution Complex data structure Editable Geometry queries(e.g. area) Hybrid model Rasters Huge data sets Limited resolution Simple data structure Hardly editable Information rich

3 Creation of digital maps Secondary data sources Digitizing Primary data sources Numeric data Georeference Scanning Table digitizing Observations, field books (semi)automatic vectorization Manual vectorization Numeric data input, constructing Digital raster map Digital vector map

4 Raster to vector conversion (R2V) P Pixel N neighborhoods, even edge neighbors Steps of vectorization Found the border, One of the n neighbors has background color Multiple pixels, more than ones in the border Object thinning, until multiple pixels left only (maximum 2 pixels wide) Semi-automatic method Raster snap Optical Character Recognition (OCR)

5 Topology Continuity and neighboring information for map objects They are invariant from the chosen co-ordinate system They make analyzis functions faster, e.g. shortest path Topology vs spagetti model FNODE_ TNODE_ LPOLY RPOLY LENGTH ID tó Graphic objects Reference ő point (tic) node polyline centroid (label) polygon annotation 7 - Centroid id 12 - Polyline id 5 - Node id

6 Aims find and correct topological errors Automatic solution, tolerance Drawing cleaning Drawing error duplicate objects short objects Explanation Objects that share the same start and end points Delete one of them Objects shorter than the spaoecified tolerance Erase them 3. undershoots Objects that come within the specified tolerance radius of each other, but do not meet 4. overshoots Object overpath another object shorter than the Specified tolerance Break crossing objects and erase overshoot part crossing objects clustered nodes pseudo nodes dangling objects Objects cross each other with no node at crossing Break crossing objects and create node at crossing Any nodes within the specified tolerance distance Snap them to the centermost node Any node shared by only two objects Dissolve the node and join the two objects Objects with at least one endpoint that is not shared by another object. Erase the object

7 Differences between CAD and GIS data structures CAD (DXF, DWG, DGN) Supporting engineering drawing Several element types One file, several layer (foil) Spaghetti data model Stores display attributes too Attributes are optional GIS (Shape, TAB, GeoBase) Querying, analyzing spatial data Point, polyline, polygon, (text) On layer, some files Topological data model Stores geometric data only Attributes are always considered 3D 2D, 2.5D Projection

8 Graphical and attribute data GIS 1:1 1 layer 1 table 1 object 1 record CAD n:m 1 drawing many table 1 object many record 1 record many object Graphic database Graphic data + identifier Relational database Attribute data + identifier x1,y1;x2,y2;x3,y3;x4,y /2 L4

9 Data Exchange Formats Industrial standards, attached to specific software CAD DXF GIS TIGER MIF/MID Shape E00 DGN DWG Independent standards National standards XML WKT ATKIS SDTS SVG GML KML DIGEST SDTS Spatial Data Transfer Standard DIGEST DIgital Geographic information Exchange STandard

10 0 SECTION 2 HEADER 0 ENDSEC 0 SECTION 2 TABLES ENDSEC 0 SECTION 2 BLOCKS ENDSEC 0 SECTION 2 ENTITIES ENDSEC EOF DXF format 0 TABLE 2 LAYER LAYER 2 0 layer name 70 0 visible 62 7 color 6 CONTINUOUS linetype 0 ENDTAB 0 LINE 5 2B 8 0 layer x y z x y z2

11 MIF/MID format Version 300 Charset "WindowsLatin2" Delimiter "," CoordSys NonEarth Units "m" Bounds (-1390, -470) (1550, 580) Columns 1 ID Integer structure of database table Data projection Line Pen (1,2, )

12 Shape format Binary format.shp co-ordinates of elements, all elements must have the same type, point, polyline or polygon.dbf dbase database table.shx minimal boundary rectangle (MBR).prj projection (optional)

13 XML format <?xml version="1.0"?> <matrix> <comment>this is a matrix</comment> <r> <c>1.2</c> <c>3.5</c> <c>-1.2</c> </r> <r> <c>2.4</c> <c>1.9</c> <c>11.8</c> </r> <r> <c type=int>4</c><c>6.5</c> <c>-0.6</c> </r> </matrix> dtd document template definition schema schema definition xml parser (e.g. xerces) <?xml version= 1.0?> <!DOCTYPE matrix [ <!ELEMENT matrix (r+, comment?)> <!ELEMENT r(c+)> <!ELEMENT c (#CDATA)> <!ELEMENT comment (#CDATA)> <!ATTLIST c type (int real) #IMPLIED> ]>

14 SVG format <?xml version="1.0" encoding="iso "?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG //EN" " <svg xmlns=" xmlns:xlink=" width="600" height="300"> <g> <line style="stroke:red;" x1="10" y1="30" x2="150" y2="80" stroke-width="5" /> </g> </svg> FireFox, Google Chrom, Opera, etc. can display SVG files Internet Explorer doesn't follow standards :( KML format (Google Earth) GML format (OGC), CityGML Line.svg Embedded Javascript is allowed

15 KML format <?xml version="1.0" encoding="utf-8"?> <kml xmlns=" <Document> <Placemark> <name>simple placemark</name> <description>attached to the ground.</description> <LineString> <tessellate>1</tessellate> <coordinates> 10,30,0 150,80,0 </coordinates> </LineString> </Placemark> </Document> </kml> WGS84 coordinates!

16 GML (Geographic Markup Language) <?xml version="1.0" encoding="utf-8"?> <ogr:featurecollection xmlns:xsi=" xsi:schemalocation=" xxx.xsd" xmlns:ogr=" xmlns:gml=" <gml:boundedby> <gml:box> <gml:coord><gml:x>10</gml:x><gml:y>30</gml:y></gml:coord> <gml:coord><gml:x>150</gml:x><gml:y>80</gml:y></gml:coord> </gml:box> </gml:boundedby> <gml:featuremember> <ogr:xxx fid="f0"> <ogr:geometryproperty><gml:linestring><gml:coordinates>10,30 150,80 </gml:coordinates></gml:linestring></ogr:geometryproperty> <ogr:id>1</ogr:id> </ogr:xxx> </gml:featuremember> </ogr:featurecollection>

17 WKT (Well Known Text) LINESTRING(10 30,150 80) Mainly used in relational databases for export/import e.g. PostGIS, Oracle Spatial, SQL Server 2008, Spatialite 2D, 3D, 4D features POINT(10 20) POLYGON((1 1,5 1,5 5,1 5,1 1),(2 2,2 3,3 3,3 2,2 2)) GEOMETRYCOLLECTION(POINT(4 6),LINESTRING(4 6,7 10)) WKB Well Known Binary, binary internal storage format: BF0D00E16249E323953C41C2D6261D4F EWKT spatial reference system included SRID=4269;POINT( )

18 Useful links ioc.unesco.org/oceanteacher/resourcekit/m3/formats/ Integrated/ DXF/ASCII DXF File Format.htm gml_and_svg.html

4/7/2009. Model: Abstraction of reality following formal rules e.g. Euclidean space for physical space

4/7/2009. Model: Abstraction of reality following formal rules e.g. Euclidean space for physical space Model: Abstraction of reality following formal rules e.g. Euclidean space for physical space At different levels: mathematical model (Euclidean space) conceptual design model (ER model) data model (design)

More information

Maps as Numbers. Maps as Numbers. Chapter 3: Maps as Numbers 14SND Getting Started with GIS Chapter 3

Maps as Numbers. Maps as Numbers. Chapter 3: Maps as Numbers 14SND Getting Started with GIS Chapter 3 Maps as Numbers Getting Started with GIS Chapter 3 Chapter 3: Maps as Numbers 3.1 Representing Maps as Numbers 3.2 Structuring Attributes 3.3 Structuring Maps 3.4 Why Topology Matters 3.5 Formats for GIS

More information

Marushka Server. Product Specification

Marushka Server. Product Specification Introductory Information Product Marushka Server represents a new generation of tools (devices) for publication and use of GIS data in the Internet and intranet. It is built on component technology in.net

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

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

2 CARTALINX OPERATION MANUAL

2 CARTALINX OPERATION MANUAL 2 CARTALINX OPERATION MANUAL 2-1 Final Report (Volume IV) Usefulness of CartaLinx GeoConcept is an GIS software that is useful with good operability in mapping data processing, but it is not so strong

More information

4.0 DIGITIZATION, EDITING AND STRUCTURING OF MAP DATA

4.0 DIGITIZATION, EDITING AND STRUCTURING OF MAP DATA .0 DIGITIZATION, EDITING AND STRUCTURING OF MAP DATA The process of digitizing existing maps is a transformation from one analog) form of information to another digital) form. Data input is the operation

More information

Digging Into Autodesk Map 3D 2007 Level 1 Training Rick Ellis Michael Carris Russell Martin

Digging Into Autodesk Map 3D 2007 Level 1 Training Rick Ellis Michael Carris Russell Martin Digging Into Autodesk Map 3D 2007 Level 1 Training Rick Ellis Michael Carris Russell Martin PO Box 344 Canby Oregon 97013 www.cadapult-software.com training@cadapult-software.com (503) 829-8929 Table of

More information

An introduction and overview of Geography Markup Language

An introduction and overview of Geography Markup Language An introduction and overview of Geography Markup Language Lecturer: Dr Dan Cornford d.cornford@aston.ac.uk http://wiki.aston.ac.uk/dancornford CS3210, Geographic Information Systems, Aston University,

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

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri Introduction to Geodatabase and Spatial Management in ArcGIS Craig Gillgrass Esri Session Path The Geodatabase - What is it? - Why use it? - What types are there? - What can I do with it? Query Layers

More information

Analytical and Computer Cartography Winter Lecture 9: Geometric Map Transformations

Analytical and Computer Cartography Winter Lecture 9: Geometric Map Transformations Analytical and Computer Cartography Winter 2017 Lecture 9: Geometric Map Transformations Cartographic Transformations Attribute Data (e.g. classification) Locational properties (e.g. projection) Graphics

More information

ArcMap - EXPLORING THE DATABASE Part I. SPATIAL DATA FORMATS Part II

ArcMap - EXPLORING THE DATABASE Part I. SPATIAL DATA FORMATS Part II Week 5 ArcMap - EXPLORING THE DATABASE Part I SPATIAL DATA FORMATS Part II topics of the week Exploring the Database More on the Table of Contents Exploration tools Identify, Find, Measure, Map tips, Hyperlink,

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

PostgreSQL/PostGIS: Interaction with Other Applications

PostgreSQL/PostGIS: Interaction with Other Applications PostgreSQL/PostGIS: Interaction with Other Applications PostgreSQL/PostGIS Support While PostgreSQL and PostGIS are useful for storing and managing geospatial data and attributes associated with those

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

Terms and definitions * keep definitions of processes and terms that may be useful for tests, assignments

Terms and definitions * keep definitions of processes and terms that may be useful for tests, assignments Lecture 1 Core of GIS Thematic layers Terms and definitions * keep definitions of processes and terms that may be useful for tests, assignments Lecture 2 What is GIS? Info: value added data Data to solve

More information

M. Andrea Rodríguez-Tastets. I Semester 2008

M. Andrea Rodríguez-Tastets. I Semester 2008 M. -Tastets Universidad de Concepción,Chile andrea@udec.cl I Semester 2008 Outline refers to data with a location on the Earth s surface. Examples Census data Administrative boundaries of a country, state

More information

Features and Benefits

Features and Benefits AutoCAD Map 3D 2010 Features and Benefits AutoCAD Map 3D software is a leading engineering solution for creating and managing spatial data. Using open-source Feature Data Object (FDO) technology, AutoCAD

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

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

Representing Geography

Representing Geography Data models and axioms Chapters 3 and 7 Representing Geography Road map Representing the real world Conceptual models: objects vs fields Implementation models: vector vs raster Vector topological model

More information

2011 Bentley Systems, Incorporated. Bentley Descartes V8i Advancing Information Modeling For Intelligent Infrastructure

2011 Bentley Systems, Incorporated. Bentley Descartes V8i Advancing Information Modeling For Intelligent Infrastructure Bentley Descartes V8i Advancing Information Modeling For Intelligent Infrastructure Agenda Why would you need Bentley Descartes? What is Bentley Descartes? Advanced Point Cloud Workflows Advanced Terrain

More information

The Number 1 In Raster / Vector Processing ForOver10Years. Overview and Specifications.

The Number 1 In Raster / Vector Processing ForOver10Years. Overview and Specifications. The Number 1 In Raster / Vector Processing ForOver10Years Overview and Specifications www.softelec.com VPHybridCAD world s No. 1 in hybrid CAD represents a line of internationally awarded software products,

More information

Yandex.Maps API Background theory

Yandex.Maps API Background theory 8.02.2018 .. Version 1.0 Document build date: 8.02.2018. This volume is a part of Yandex technical documentation. Yandex helpdesk site: http://help.yandex.ru 2008 2018 Yandex LLC. All rights reserved.

More information

This is the vector graphics "drawing" technology with its technical and creative beauty. SVG Inkscape vectors

This is the vector graphics drawing technology with its technical and creative beauty. SVG Inkscape vectors 1 SVG This is the vector graphics "drawing" technology with its technical and creative beauty SVG Inkscape vectors SVG 2 SVG = Scalable Vector Graphics is an integrated standard for drawing Along with

More information

Lecture 4: GIS Data Input Methods and Techniques. GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University

Lecture 4: GIS Data Input Methods and Techniques. GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University Lecture 4: GIS Data Input Methods and Techniques GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University Geographic Data in GIS Can be obtained from various sources in different formats

More information

Scalable Vector Graphics (SVG) vector image World Wide Web Consortium (W3C) defined with XML searched indexed scripted compressed Mozilla Firefox

Scalable Vector Graphics (SVG) vector image World Wide Web Consortium (W3C) defined with XML searched indexed scripted compressed Mozilla Firefox SVG SVG Scalable Vector Graphics (SVG) is an XML-based vector image format for twodimensional graphics with support for interactivity and animation. The SVG specification is an open standard developed

More information

Integrating CAD Data with ArcGIS

Integrating CAD Data with ArcGIS Integrating CAD Data with ArcGIS Agenda An Overview of CAD Drawings CAD Data Structure in ArcGIS Visualization Georeferencing Data Conversion ArcGIS for AutoCAD Q & A CAD Drawings - Overview Widely used

More information

Building and Analyzing Topology in Autodesk Map GI21-1

Building and Analyzing Topology in Autodesk Map GI21-1 December 2-5, 2003 MGM Grand Hotel Las Vegas Building and Analyzing Topology in Autodesk Map GI21-1 Alex Penney ISD Training Content Manager, Autodesk Professional Services, Autodesk Inc. Topology is one

More information

SEXTANT 1. Purpose of the Application

SEXTANT 1. Purpose of the Application SEXTANT 1. Purpose of the Application Sextant has been used in the domains of Earth Observation and Environment by presenting its browsing and visualization capabilities using a number of link geospatial

More information

Georeferencing. Georeferencing: = linking a layer or dataset with spatial coordinates. Registration: = lining up layers with each other

Georeferencing. Georeferencing: = linking a layer or dataset with spatial coordinates. Registration: = lining up layers with each other Georeferencing How do we make sure all our data layers line up? Georeferencing: = linking a layer or dataset with spatial coordinates Registration: = lining up layers with each other Rectification: The

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

GEOMEDIA SMART CLIENT 2015 PRODUCT FEATURES AND COMPARISONS

GEOMEDIA SMART CLIENT 2015 PRODUCT FEATURES AND COMPARISONS GEOMEDIA SMART CLIENT 2015 PRODUCT FEATURES AND COMPARISONS GeoMedia Smart Client enables the entire organization to access and utilize rich geospatial data in their business processes. It delivers an

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

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

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

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

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

Topics in this section How to use this book Understanding DWG objects and GIS features Other learning resources Complete list of animations

Topics in this section How to use this book Understanding DWG objects and GIS features Other learning resources Complete list of animations What are GIS Skills? Many engineers are familiar with the powerful set of editing tools provided by AutoCAD, but have little experience with GIS applications and little time to learn them. If you have

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

Topology in the Geodatabase: An Introduction

Topology in the Geodatabase: An Introduction Topology in the Geodatabase: An Introduction Colin Zwicker Erik Hoel ESRI Super Secret Topology Laboratory, May 2016 Agenda ArcGIS Topology defined Validating a topology Editing a topology Geoprocessing

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

CHAPTER 2 GEOREFERENCING AND SHAPEFILE CREATION

CHAPTER 2 GEOREFERENCING AND SHAPEFILE CREATION CHAPTER 2 GEOREFERENCING AND SHAPEFILE CREATION Georeferencing is the process of assigning real-world coordinates to each pixel of the raster. These coordinates are obtained by doing field surveys - collecting

More information

Topology in the Geodatabase an Introduction. Erik Hoel Doug Morgenthaler

Topology in the Geodatabase an Introduction. Erik Hoel Doug Morgenthaler Topology in the Geodatabase an Introduction Erik Hoel Doug Morgenthaler ESRI Super Secret Topology Laboratory, May 2012 Agenda ArcGIS Topology defined Validating a topology Editing a topology Geoprocessing

More information

Launch QGIS. Launch QGIS from. Open window Quantum GIS (Figure 1.1 below) Start All Programs Quantum GIS. QGISIcon on the desk top

Launch QGIS. Launch QGIS from. Open window Quantum GIS (Figure 1.1 below) Start All Programs Quantum GIS. QGISIcon on the desk top QGIS Launch QGIS Launch QGIS from Start All Programs Quantum GIS OR QGISIcon on the desk top Open window Quantum GIS (Figure 1.1 below) 2 Figure 1.1 3 Opening Raster For this exercise we demonstrate three

More information

Chapter 3: Maps as Numbers

Chapter 3: Maps as Numbers Chapter 3: Maps as Numbers 3. Representing Maps as Numbers 3.2 Structuring Attributes 3.3 Structuring Maps 3.4 Why Topology Matters 3.5 Formats for GIS Data 3.6 Exchanging Data David Tenenbaum EEOS 265

More information

GEOMEDIA SMART CLIENT 2016

GEOMEDIA SMART CLIENT 2016 PRODUCT DESCRIPTION GEOMEDIA SMART CLIENT 2016 PRODUCT FEATURES AND COMPARISONS GeoMedia Smart Client enables the entire organization to access and utilize rich geospatial data in their business processes.

More information

Lab 1: Exploring data format

Lab 1: Exploring data format Geog 458: Map Sources and Errors January 13, 2006 Lab 1: Exploring data format Data format supported by ArcGIS There are many file types supported by ArcGIS, in addition to specific cartographic objects.

More information

Geological mapping using open

Geological mapping using open Geological mapping using open source QGIS MOHSEN ALSHAGHDARI -2017- Abstract Geological mapping is very important to display your field work in a map for geologist and others, many geologists face problems

More information

Digging Into Autodesk Map 3D 2005 Level 1 Training Rick Ellis Michael Carris Russell Martin

Digging Into Autodesk Map 3D 2005 Level 1 Training Rick Ellis Michael Carris Russell Martin Digging Into Autodesk Map 3D 2005 Level 1 Training Rick Ellis Michael Carris Russell Martin PO Box 344 Canby Oregon 97013 www.cadapult-software.com training@cadapult-software.com (503) 829-8929 Copyright

More information

Interactive Maps Purpose: Login to the System: Interactive Maps ONTINUE AGREE

Interactive Maps Purpose: Login to the System: Interactive Maps ONTINUE AGREE Interactive Maps Purpose: The purpose of this application is to provide the facility to the citizen to navigate to a Property through an On-line Free Web Application in real time. The application uses

More information

6. XML. Thomas Lumley Ken Rice. Universities of Washington and Auckland. Seattle, July 2012

6. XML. Thomas Lumley Ken Rice. Universities of Washington and Auckland. Seattle, July 2012 6. XML Thomas Lumley Ken Rice Universities of Washington and Auckland Seattle, July 2012 Complex text data XML is a format for constructing and describing data formats for plain text data. HTML (almost)

More information

Technology for Cadastral Applications. John R. Hacker, Jr. Marketing Manager Geospatial Applications

Technology for Cadastral Applications. John R. Hacker, Jr. Marketing Manager Geospatial Applications Technology for Cadastral Applications John R. Hacker, Jr. Marketing Manager Geospatial Applications Agenda Cadastral Mapping Issues Precision and Accuracy Data Creation Data Management Data Publishing

More information

Accessing Data Where it Lives

Accessing Data Where it Lives Accessing Data Where it Lives Session 3A Steve Carr TSI Tyson Haverkort Safe Software Session Description We ll discuss many types of data that can be used in MapInfo Professional such as: Business Data

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

An Example of Regional Web Resources: Massachusetts, USA Digital Data

An Example of Regional Web Resources: Massachusetts, USA Digital Data An Example of Regional Web Resources: Massachusetts, USA Digital Data Author Attribution Major contributors to this curriculum include (alphabetical): Maria Fernandez Michael Hamel Quentin Lewis Maili

More information

Using Databases for 3D Data Management From Point Cloud to City Model

Using Databases for 3D Data Management From Point Cloud to City Model Using Databases for 3D Data Management From Point Cloud to City Model Hans Viehmann 1 1 ORACLE Corporation, Server Technologies Division, Hamburg, Germany, hans.viehmann@oracle.com Abstract With the cost

More information

Maps as Numbers: Data Models

Maps as Numbers: Data Models Maps as Numbers: Data Models vertices E Reality S E S arcs S E Conceptual Models nodes E Logical Models S Start node E End node S Physical Models 1 The Task An accurate, registered, digital map that can

More information

WebEasy GIS is a cloud computing application for the web consultation of maps and geographic data.

WebEasy GIS is a cloud computing application for the web consultation of maps and geographic data. WebEasy GIS Geographic Information System WebEasy GIS is a cloud computing application for the web consultation of maps and geographic data. WebEasy GIS has a practical and intuitive interface, it works

More information

INFACTORY : A RESTFUL API SERVER FOR EASILY CREATING INDOORGML

INFACTORY : A RESTFUL API SERVER FOR EASILY CREATING INDOORGML INFACTORY : A RESTFUL API SERVER FOR EASILY CREATING INDOORGML Hyemi Jeong, Hyung-gyu Ryoo, Ki-Joune Li Dept. of Computer Science&Engineering, Pusan National University, Kumjeong-Gu, 46241, Pusan, South

More information

Using Autodesk Map Capabilities in Autodesk Civil 3D

Using Autodesk Map Capabilities in Autodesk Civil 3D 11/30/2005-1:00 pm - 2:30 pm Room:Swan 2 (Swan) Walt Disney World Swan and Dolphin Resort Orlando, Florida Using Autodesk Map Capabilities in Autodesk Civil 3D Neil Brooker - Autodesk CV33-3 This class

More information

State of JTS. Presented by: James, Jody, Rob, (Martin)

State of JTS. Presented by: James, Jody, Rob, (Martin) State of JTS Presented by: James, Jody, Rob, (Martin) Welcome Martin Davis James Hughes Jody Garnett Rob Emanuele Vivid Solutions CCRi Boundless Azavea 2 Introducing JTS Topology Suite udig Introduction

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

SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL

SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL DIGITAL MAPPING FILES (very efficient/extremely accurate): 1. G.I.S. dataset formats that we can accept: FORMAT FILE EXT(S) FORMAT FILE EXT(S) AutoCAD (*.dwg,

More information

TatukGIS Editor. Introduction

TatukGIS Editor. Introduction TatukGIS Editor Introduction TatukGIS Editor is a desktop product designed for visualization, coverage, processing, and simple analysis of spatial data. The latest available product version at the time

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

user manual GeoViewer DB Netze Fahrweg

user manual GeoViewer DB Netze Fahrweg user manual GeoViewer DB Netze Fahrweg Register of Infrastructure Updated: Juli 2018 Release: 1.11.0 Page 1 von 32 Content 1 List of illustrations 3 2 Basics 4 2.1 Components 4 2.1.1 Interfaces 4 2.1.2

More information

Geodatabases. Dr. Zhang SPRING 2016 GISC /03/2016

Geodatabases. Dr. Zhang SPRING 2016 GISC /03/2016 Geodatabases Dr. Zhang SPRING 2016 GISC 1401 10/03/2016 Using and making maps Navigating GIS maps Map design Working with spatial data Spatial data infrastructure Interactive maps Map Animations Map layouts

More information

Never Digitize Again! Converting Paper Drawings to Vector

Never Digitize Again! Converting Paper Drawings to Vector December 2-5, 2003 MGM Grand Hotel Las Vegas Never Digitize Again! Converting Paper Drawings to Vector Felicia Provencal GD42-3L How many hours have you spent hunched over a digitizing board converting

More information

Geographic Information Systems. using QGIS

Geographic Information Systems. using QGIS Geographic Information Systems using QGIS 1 - INTRODUCTION Generalities A GIS (Geographic Information System) consists of: -Computer hardware -Computer software - Digital Data Generalities GIS softwares

More information

MapInfo Professional Evolution!

MapInfo Professional Evolution! MapInfo Professional Evolution! A long history of improvement This presentation covers what is new in all of the MapInfo Pro releases since v9.0! MapInfo Pro Release History A feature release every year

More information

Object modeling and geodatabases. GEOG 419: Advanced GIS

Object modeling and geodatabases. GEOG 419: Advanced GIS Object modeling and geodatabases GEOG 419: Advanced GIS CAD Data Model 1960s and 1970s Geographic data stored as points, lines, and areas No attributes; each feature type stored on a different layer No

More information

John Koltun and Ken Stumpf

John Koltun and Ken Stumpf IGUG, Fall 1995 San Jose, CA Presented by: John Koltun and Ken Stumpf Geographic Resource Solutions 1125 16th Street, Suite 213 Arcata, CA 95521 (707) 822-8005 (707) 822-2864 (fax) Graphic Problems and

More information

Autodesk Topobase : Best Practices for Working with DWG

Autodesk Topobase : Best Practices for Working with DWG Autodesk Topobase : Best Practices for Working with DWG 2010 Autodesk, Inc. All rights reserved. NOT FOR DISTRIBUTION. The contents of this guide were created for use with Autodesk Topobase 2010 with Update

More information

AutoCAD Map 3D and ESRI ArcSDE

AutoCAD Map 3D and ESRI ArcSDE AUTOCAD MAP 3D 2009 WHITE PAPER AutoCAD Map 3D and ESRI ArcSDE Many organizations, such as utilities, telecommunication providers, and government agencies, depend on geospatial data that is stored in a

More information

GIS in agriculture scale farm level - used in agricultural applications - managing crop yields, monitoring crop rotation techniques, and estimate

GIS in agriculture scale farm level - used in agricultural applications - managing crop yields, monitoring crop rotation techniques, and estimate Types of Input GIS in agriculture scale farm level - used in agricultural applications - managing crop yields, monitoring crop rotation techniques, and estimate soil loss from individual farms or agricultural

More information

Kelar Corporation. Leaseline Management Application (LMA)

Kelar Corporation. Leaseline Management Application (LMA) Kelar Corporation Leaseline Management Application (LMA) Overview LMA is an ObjectARX application for AutoCAD Map software. It is designed to add intelligence to the space management drawings associated

More information

D4.4 Procedures GIS Update System report. FORCIP+: Forest Roads for Civil Protection

D4.4 Procedures GIS Update System report. FORCIP+: Forest Roads for Civil Protection D4.4 Procedures GIS Update System report. FORCIP+: Forest Roads for Civil Protection Project title Call identifier Project acronym Forest Roads for Civil Protection (FORCIP+) Call for proposals 2015 for

More information

State of JTS. Presented by: James, Jody, Rob, (Martin)

State of JTS. Presented by: James, Jody, Rob, (Martin) State of JTS Presented by: James, Jody, Rob, (Martin) Welcome Martin Davis James Hughes Jody Garnett Rob Emanuele Vivid Solutions CCRi Boundless Azavea 2 Introducing JTS Topology Suite udig Introduction

More information

Google Earth II: Create a tour with Google Earth

Google Earth II: Create a tour with Google Earth Google Earth II: Create a tour with Google Earth This workshop is a continuation of The Google Earth Workshop I: Map-making Basics. You will create a tour to show the main and satellite campuses of the

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

SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL

SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL DIGITAL MAPPING FILES (very efficient/extremely accurate): 1. G.I.S. dataset formats that we can accept: FORMAT FILE EXT(S) FORMAT FILE EXT(S) AutoCAD (*.dwg,

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

PROGRESSIVE TRANSMISSION OF VECTOR MAP ON THE WEB

PROGRESSIVE TRANSMISSION OF VECTOR MAP ON THE WEB PROGRESSIVE TRANSMISSION OF VECTOR MAP ON THE WEB AI Bo a, *, AI Tinghua b, TANG Xinming c a Geomatics College, Shandong University of Science and Technology, Qingdao, China - aibo@sdust.edu.cn b School

More information

GstarCAD Complete Features Guide

GstarCAD Complete Features Guide GstarCAD 2017 Complete Features Guide Table of Contents Core Performance Improvement... 3 Block Data Sharing Process... 3 Hatch Boundary Search Improvement... 4 New and Enhanced Functionalities... 5 Table...

More information

May 2013 Oracle Spatial and Graph User Conference

May 2013 Oracle Spatial and Graph User Conference May 2013 Oracle Spatial and Graph User Conference May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA Paul Calhoun & Vince Smith GIS Systems Analyst City Of Virginia Beach

More information

Questions and Answers

Questions and Answers AUTODESK MAP 3D 2006 Questions and Answers 1. General Product Information 1.1 What is Autodesk Map 3D 2006 software? Autodesk Map 3D 2006, built on AutoCAD 2006 software, connects CAD, civil engineering,

More information

GIS Data Models. 4/9/ GIS Data Models

GIS Data Models. 4/9/ GIS Data Models GIS Data Models 1 Conceptual models of the real world The real world can be described using two conceptually different models: 1. As discrete objects, possible to represent as points, lines or polygons.

More information

Advanced Standard Basic Notes

Advanced Standard Basic Notes 9.3 Functionality Matrix Data Management Scalable Geodatabase Access Full Geodatabase Support Create Geodatabases Load Spatial Data into Geodatabases Manage Geodatabases One-Way Replication Two-Way Replication

More information

SuperGIS Server 3.2 Value Edition Specification

SuperGIS Server 3.2 Value Edition Specification SuperGIS Server 3.2 Value Edition Specification 20140826 Specification 1. All of the services support SOAP (Simple Object Access Protocol). 2. Use map file created by SuperGIS Desktop as map services SuperGIS

More information

QGIS for Geoscientists

QGIS for Geoscientists QGIS for Geoscientists Robin Armit, Tom Carmichael, Lachlan Grose Monash Structural Geophysics group 22 nd 26th February 2016 GIS A geographic information system (GIS) is a system designed to capture,

More information

To the GeoView System Overview Online Training Course

To the GeoView System Overview Online Training Course Welcome! To the GeoView System Overview Online Training Course The Alberta Department of Energy provides GeoView as a mapping system to enable users to find geographic information in Alberta. GeoView retrieves

More information

Class #2. Data Models: maps as models of reality, geographical and attribute measurement & vector and raster (and other) data structures

Class #2. Data Models: maps as models of reality, geographical and attribute measurement & vector and raster (and other) data structures Class #2 Data Models: maps as models of reality, geographical and attribute measurement & vector and raster (and other) data structures Role of a Data Model Levels of Data Model Abstraction GIS as Digital

More information

VECTOR ANALYSIS: QUERIES, MEASUREMENTS & TRANSFORMATIONS

VECTOR ANALYSIS: QUERIES, MEASUREMENTS & TRANSFORMATIONS VECTOR ANALYSIS: QUERIES, MEASUREMENTS & TRANSFORMATIONS GIS Analysis Winter 2016 Spatial Analysis Operations performed on spatial data that add value Can reveal things that might otherwise be invisible

More information

Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS

Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS Watershed Sciences 4930 & 6920 GEOGRAPHIC INFORMATION SYSTEMS WEEK Four Lecture 7 EDITING & ATTRIBUTING DATA & METADATA Joe Wheaton HOUSEKEEPING - AFTER WATS 4931/6921 Proposals Due Feb 1 st Feb 3 rd!

More information

Leveraging OGC Services in ArcGIS Server. Satish Sankaran Yingqi Tang

Leveraging OGC Services in ArcGIS Server. Satish Sankaran Yingqi Tang Leveraging OGC Services in ArcGIS Server Satish Sankaran ssankaran@esri.com Yingqi Tang ytang@esri.com Agenda Interoperability Enablers OGC and esri OGC Web Services ArcGIS and OGC Web Services - @ version

More information

AN OVERVIEW OF SPATIAL INDEXING WITHIN RDBMS

AN OVERVIEW OF SPATIAL INDEXING WITHIN RDBMS AN OVERVIEW OF SPATIAL INDEXING WITHIN RDBMS ADD SUBTITLE IN ALL CAPS DAVID DEHAAN SQL ANYWHERE QUERY PROCESSING TEAM SYBASE THURSDAY 9 FEB 2012 CHERITON SCHOOL OF COMPUTER SCIENCE, CS 448/648 OUTLINE

More information

Digitizing and Editing Polygons in the STS Gypsy Moth Project. M. Dodd 2/10/04

Digitizing and Editing Polygons in the STS Gypsy Moth Project. M. Dodd 2/10/04 Digitizing and Editing Polygons in the STS Gypsy Moth Project M. Dodd 2/10/04 Digitizing and Editing Polygons in the STS Gypsy Moth Project OVERVIEW OF DIGITIZING IN STS 3 THE DIGITIZING WINDOW 4 DIGITIZING

More information

Creating and editing vector maps

Creating and editing vector maps Software PHOTOMOD Module PHOTOMOD VectOr Creating and editing vector maps Racurs, Moscow, 2009 PHOTOMOD CONTENTS 1. GENERAL PURPOSE OF VECTOR MAP EDITOR... 3 2. VECTOR MAP EDITOR MANAGING.... 3 3. ADDING

More information