Basics on Geodatabases



Similar documents
GIS Databases With focused on ArcSDE

Cookbook 23 September 2013 GIS Analysis Part 1 - A GIS is NOT a Map!

Geodatabase Programming with SQL

Spatial data models (types) Not taught yet

Chapter 1: Introduction to ArcGIS Server

Archival Challenges Associated with the Esri Personal Geodatabase and File Geodatabase Formats

Attribute Data and Relational Database. Lecture 5 9/21/2006

DATABASE MANAGEMENT FILES GIS06

ArcGIS 10.1 Geodatabase Administration. Gordon Sumerling & Christopher Brown

Terry Sherman Oklahoma South Central Arc-Users Group th Annual Conference 9/23/2014

Agenda. What is GIS? GIS and SAP Real Examples

MrSID Plug-in for 3D Analyst

Creating a File Geodatabase

Prerequisites Attended the previous technical session: Understanding geodatabase editing workflows: Introduction

Enterprise GIS Solutions to GIS Data Dissemination

ArcGIS. Server. A Complete and Integrated Server GIS

A Web services solution for Work Management Operations. Venu Kanaparthy Dr. Charles O Hara, Ph. D. Abstract

Introduction to the ArcGIS Data Model and Application Structure

White Paper. Freeance Mobile for Cityworks

Personal Geodatabase 101

Database Servers Tutorial

Guidelines on Information Deliverables for Research Projects in Grand Canyon National Park

Vector analysis - introduction Spatial data management operations - Assembling datasets for analysis. Data management operations

Oracle Platform GIS & Location-Based Services. Fred Louis Solution Architect Ohio Valley

AVALANCHE MC 5.3 AND DATABASE MANAGEMENT SYSTEMS

HALOGEN. Technical Design Specification. Version 2.0

David M. Kroenke and David J. Auer Database Processing 11 th Edition Fundamentals, Design, and Implementation. Chapter Objectives

How to Import Data into Microsoft Access

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 4: Preparing Data for Analysis

UPDATED GIS DATABASE DESIGN: Geodatabase Model

A GIS helps you answer questions and solve problems by looking at your data in a way that is quickly understood and easily shared.

Working with the Geodatabase Using SQL

An Esri White Paper August 2010 Product Library in Esri Aeronautical Solution: Enabling Seamless Product, Data, and Document Management

(Geo)database and Data Management

Government 1008: Introduction to Geographic Information Systems. LAB EXERCISE 4: Got Database?

UNLEASHED. The Field Calculator. By Tom Neer, EDAW, Inc.

A Tutorial for New Users of the Marine Data Model. Alyssa Aaby, Dawn Wright Oregon State University

Data Integration for ArcGIS Users Data Interoperability. Charmel Menzel, ESRI Don Murray, Safe Software

ArcGIS Data Models Practical Templates for Implementing GIS Projects

SQL SUPPORTED SPATIAL ANALYSIS FOR WEB-GIS INTRODUCTION

City of Tigard. GIS Data Standards

Database Management. Technology Briefing. Modern organizations are said to be drowning in data but starving for information p.

Spatial Database Support

Enterprise GIS: Database Planning

Databases and DBMS. What is a Database?

Data Modeling Basics. John Auel GIS Technician II United Services Group

Relational Database Basics Review

Web and Mobile GIS Applications Development

10. Creating and Maintaining Geographic Databases. Learning objectives. Keywords and concepts. Overview. Definitions

Setting up a database for multi-user access

ArcSDE Spatial Data Management Roles and Responsibilities

Introduction to Databases

Choosing the right GIS framework for an informed Enterprise Web GIS Solution

Constructing an EA-level Database. for the Census

WHY DO YOU NEED A DATABASE? USE A DATABASE IF USE A SPREADSHEET IF

INTRODUCTION TO ARCGIS SOFTWARE

ArcGIS Server and Geodatabase Administration for 10.2

Building a Spatial Database in PostgreSQL

Overview of Databases On MacOS. Karl Kuehn Automation Engineer RethinkDB

There are various ways to find data using the Hennepin County GIS Open Data site:

Virginia Commonwealth University Rice Rivers Center Data Management Plan

The GeoMedia Architecture Advantage. White Paper. April The GeoMedia Architecture Advantage Page 1

GIS. Digital Humanities Boot Camp Series


MAY 18, 2015 ARCGIS FOR SERVER FUNCTIONALITY MATRIX

Database Administrator [DBA]

About Reference Data

David M. Kroenke and David J. Auer Database Processing 12 th Edition

This guide specifies the required and supported system elements for the application.

How To Use Arcgis For Free On A Gdb (For A Gis Server) For A Small Business

Big Data and Analytics: Getting Started with ArcGIS. Mike Park Erik Hoel

An Esri White Paper October 2010 Esri Production Mapping Product Library: Spatially Enabled Document Management System

GeoMedia Smart Client

ArcSDE Database Servers Tutorial

Supported DBMS platforms DB2. Informix. Enterprise ArcSDE Technology. Oracle. GIS data. GIS clients DB2. SQL Server. Enterprise Geodatabase 9.

Automated Information System and Data Project Charter Wetlands Master Geodatabase (April, 2003)

How To Write An Nccwsc/Csc Data Management Plan

Mississippi Private Schools 2015

Package sjdbc. R topics documented: February 20, 2015

Technical Data Sheet: imc SEARCH 3.1. Topology

HELCOM Data and Map Service. User Manual

Database as a Service (DaaS) Version 1.02

2. Look for a link to ODESI data portal. In the Key Links section in the left side and double click ODESI Data Retrieval.

SEER Enterprise Shared Database Administrator s Guide

A Distributed Storage Schema for Cloud Computing based Raster GIS Systems. Presented by Cao Kang, Ph.D. Geography Department, Clark University

Bentley ArcGIS. Connector

Understanding ArcSDE. GIS by ESRI

Questions and Answers for Citrix Ready Software

Creating a GIS based learning tool for the Faculty of Forest & Environment at the HNE Eberswalde

GIS Data in ArcGIS. Pay Attention to Data!!!

Database-driven library system

Mapping Mashup/Data Integration Development Resources Teaching with Google Earth and Google Ocean Stone Lab August 13, 2010

GIS AS A DECISION SUPPORT FOR SUPPLY CHAIN MANAGEMENT

Technology Announcement - SQL Server Database Transition

Pennsylvania Geospatial Data Sharing Standards (PGDSS) V 2.5

1.0 Hardware Requirements:

Analysing Big Data in ArcGIS

SPI Backup via Remote Terminal

Oracle Data Integrator: Administration and Development

Transcription:

Basics on Geodatabases 1

GIS Data Management 2

File and Folder System A storage system which uses the default file and folder structure found in operating systems. Uses the non-db formats we mentioned previously (shapefiles, text/excel files). Data stored on individual computers or shared over a local network. 3

Database (DB) A storage system designed to manage large datasets efficiently. Users can query and manipulate data using joins, relates, and a Structured Query Language (SQL). A database can exist on your computer, on a private network (such as your office), or on a server connected to the Internet. 4

Database Fundamentals Databases are a collection of tables. Each table contains columns (fields) and rows (records). Table Column/Field ID Country Province Population Record/Row 34 Popistan Northern 1,583,129 26 Popistan Southern 8,325,521 03 Popistan Great Valley 954,074 5

Database Fundamentals Tables can be joined to each other using a unique identifier or code (a primary key). It is good practice to assign a primary key to every unit of census geography (including administrative and statistical). Use an alphanumeric code. Table 1 Table 2 ID Country Province Population 34 Popistan Northern 1,583,129 Joins ID 03 83% Percent Rural 26 Popistan Southern 8,325,521 03 Popistan Great Valley 954,074 34 51% 26 14% Primary Keys (unique codes) 6

Database Management System (DBMS) Software designed to efficiently administer one or more database(s). In action, users rarely distinguish between a DBMS and database. Examples you may be familiar with include Microsoft Access and ArcGIS. Note: A Microsoft Excel spreadsheet is not a database, though it does share many features. You may also be familiar with more advanced DBMS software, such as PostgreSQL, MySQL, and Microsoft SQL Server. 7

Single User Databases Single user means only one user at a time can access the database. There may be minimal support for multiple users. Useful for managing data for small projects with few participants. These databases are generally stored locally (i.e., on your computer) or on a shared drive for minimal collaboration. Both Microsoft Access and ArcGIS can create single user databases. 8

Multi-User Databases Nearly always a DBMS such as PostgreSQL, Microsoft SQL Server, or MySQL. Designed to handle multiple users retrieving from and updating the same database simultaneously. Often just called an enterprise database. Enterprise refers to an office or organization. 9

Multi-User Databases Managing the edits of multiple users at once is called versioning or deconflicting. Versioning stores a record of every user s transaction. Thus, each database edit is reversible. The databases are stored remotely and accessed over a private network or the Internet. Data processing can either occur on the network or on your local computer. 10

Diagram of a Multi-User Database Data Tables Database Administrator (DBA) Database 1 User 1 User 2 Database Management System (DBMS) Database 2 Database 3 User 3 Servers hosting DBMS and DBs 11

Spatial Databases Also called geospatial databases, geographic databases, or geodatabases. Possess all of the same features of other databases, plus the ability to store location data. 12

Database Advantages The file/folder system is easier for quick projects. However, storing geographic data in a database provides numerous advantages over the file/folder system: Data are stored more efficiently. Can separate geographic features and attribute data. Larger datasets are easier to access and manage. Specific data can be retrieved using queries. The quality of geographic features can be managed more effectively with topology. Much more on topology later! 13

Realities Databases require extra knowledge of administration, querying, managing joins/relates, etc. A multi-user enterprise database, while advantageous, requires expensive hardware, persistent network connectivity, and highly skilled IT support. May not be feasible for all organizations. 14

Group Discussion How do you store data in your organization? Would you like to use a different method? 15

Geodatabases in ArcGIS 16

Geodatabases in ArcGIS As we discussed previously: Geographic data can be stored in many different formats. Data can also be stored using standalone files and folders or a database. ArcGIS includes functionality to create geodatabases for storing, editing, and managing your data. These geodatabases include a number of useful tools which we will explore in detail. Note: the terms geodatabase, spatial database, and database are used interchangeably. 17

Fundamental Concepts The preferred format for storing data in the ArcGIS environment is the File Geodatabase. Another format, the Personal Geodatabase, is obsolete. You can store all types of data in the file geodatabase, including vector, raster, and non-spatial tables. 18

Important Caveats The file geodatabase is designed as a single user database. Very limited multi-user support. The file geodatabase is a proprietary format. Not easily compatible with other GIS software. 19

File Geodatabase vs. Shapefile Feature Shapefile File Geodatabase File size limits 2GB Unlimited (TBs) Storage efficiency Less efficient More efficient Performance Slower Faster Raster support No Yes Enforcing consistency within and between files No Yes (topology, schemas, projections) Compatibility Most GIS software ArcGIS Only Portability Zip and ship Zip and ship Multi-User No Limited 20

Structure of File Geodatabases Several file types can exist in the file geodatabase: Feature dataset: A geospatial container which stores projection information and topology for vector data. Feature class: Geospatial point, line, or polygon (vector) data. Non-spatial table: A set of attributes which are commonly linked to a feature class. Raster: Sits independently within a file geodatabase and cannot be stored in a feature dataset. Topology file: Stores the rules which enforce data integrity within the database. Relationship file: Creates a join between multiple feature classes and/or non-spatial tables. Others: Raster mosaic/catalog, schematic dataset, toolbox, parcel fabric, annotation, network, terrain. We will work with feature datasets, feature classes, and tables. 21

Good Practices: In General Keep spatial data and non-critical attributes separate. Exception: attributes critical to the geographic definition of the features in the dataset (e.g., place names, identification codes). Use feature datasets to store related geography. Can be structured many different ways. E.g., province-by-province, grouped by type of feature. 22

Good Practices: Data Preservation Maintain separate databases for production files and working files. E.g., one database of data approved for field staff to use and another for data being edited by head office staff. Data from the working DB feeds into the production DB. If you want to experiment, export your feature data to a scratch database or a shapefile. Never edit production data directly! Produce daily or weekly backups of your database and store in a safe place. E.g., a removable hard drive locked in a storage room. 23

Other Options for geo-enabled RDBMs Options have increased dramatically, here are some of the major players: Proprietary Oracle Spatial Microsoft SQL (post 2008) Open Source PostGIS/Postgre SpatialLite 24