32
Geodatabase: An Introduction Rudy Prosser Jim Gough

Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

  • Upload
    others

  • View
    10

  • Download
    1

Embed Size (px)

Citation preview

Page 1: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Geodatabase: An IntroductionRudy Prosser

Jim Gough

Page 2: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Getting startedGeodatabase: An Introduction

Overview

BasicExtended

Geodatabase

Page 3: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Working with geodatabasesDemonstration

Page 4: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Overview

Page 5: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

What is the geodatabase?Overview

Collection

Scalable

Programmable

Page 6: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Why use a geodatabase?Overview

FunctionalityCustomizable

SimplePlatformIntegration

Page 7: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Types of geodatabasesOverview

File*

Enterprise

File System

RDBMS

Single Editor

Multiple Editor

Page 8: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Geodatabase workflowOverview

Update Create

Populate

Plan

Data models

Information models

ArcGIS Pro

ArcMap

Desktop

Portals

Mobile

Page 9: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Geodatabase toolsOverview

ArcGIS Pro

ArcMap

Portal forArcGIS

ArcGISOnline

APIs

SDKs

Apps

Page 10: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Creating a geodatabaseDemonstration

Page 11: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Basic Functionality

Page 12: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Basic Geodatabase Functionality

Data

Rules

• Subtype

• Domain

• Relationship

• Table

• Feature Class

• Raster

• Feature dataset

Page 13: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Table (Object)Basic Geodatabase Functionality - Data

• Rows are unique objects

• Rows have same fields

ArcGIS-defined ID

User-defined ID

Number Object IDText Global IDDate RasterBLOB

• No spatial field

Page 14: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Feature classBasic Geodatabase Functionality - Data

• Collection of features

- Same geometry type

- Same spatial reference

- Same attribute fields

Stores geometry

ArcGIS-defined ID

Geometry BLOBNumber Object IDText Global IDDate Raster

• Extended functionality

- Multi-part features

- Z and M values

- Annotation / Dimension

Page 15: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

RasterBasic Geodatabase Functionality - Data

• Cell / Pixel-based data

- Discrete / Continuous data

- Multiple formats

• Geodatabase

- Raster dataset

- Manage single raster

- Mosaic Dataset

- Manage multiple rasters

- Store as a catalog, view as a mosaic

- Advanced querying and processing

Page 16: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

SubtypeBasic Geodatabase Functionality - Rules

• Define categories / classes

• Set rules for each field by category

- Default values

- Domains

- Behaviors

• Property of tableor feature class

Subtype code (Integer)

Subtype description

Page 17: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

DomainBasic Geodatabase Functionality - Rules

• Specify valid values

- List of valid values

- Min and max value

• Apply to multiple attribute fields

• Property of geodatabase

Coded Value DomainFRC_DESC in (“Freeway or Other Major Road”, “Other Major Road”,…)

Range Domain -FRC between 0 and 5

Page 18: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Relationship classBasic Geodatabase Functionality - Rules

• Define association between geodatabase objects

• 1:1, 1:M, M:N cardinalities

• Simple or composite

• Apply rules and attributes

• Edit across relationship

Page 19: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Feature datasetBasic Geodatabase Functionality - Rules

• Collection of spatial datasets

• Specifies spatial reference

• Treated as a single object

• Necessary for

- Networks

- Topologies

- Terrains

• Not a folder

ParcelCorner

Parcel

ParcelAnno

LotLines

Parcel_Topo

LotDimensions

Subdivision

BoundryLines

Page 20: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Exploring a geodatabaseDemonstration

Page 21: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Extended Functionality

Page 22: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Extended geodatabase functionality

Data

Models• Geometric Network

• Network Dataset

• Attachments

• Topology

• Parcel Fabric

Page 23: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

AttachmentsExtended geodatabase functionality - Data

• Associate 1 or more files witha geographic feature

- Stored within the geodatabase

• Accessible throughout the ArcGIS platform

- Open files types recognized by OS

- Download others

• Specialized implementation of arelationship class

Page 24: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Geodatabase topologyExtended geodatabase functionality - Data

• Manage shared geometry

- Within a feature class

- Between feature classes

• Rules-based

- Select rules based on spatial relationships

- Apply rules by validating data

- Make corrections or mark exceptions

Page 25: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

NetworksExtended geodatabase functionality - Models

• Geometric and Utility Networks

- Use edges and junctions to model connectivity

- Resources are constrained by network

- Connectivity based on geometric coincidence

- Define connectivity rules

• Network Datasets

- Use edges and junctions to model transportation networks

- Resources make decisions on the network

- Include travel time, speed, turns

- Supports multimodal scenarios

Page 26: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Parcel FabricExtended geodatabase functionality - Models

• Model and manage cadastral data

• Integrated data structure

- Control data

- COGO dimensions

- Parcel identification information

- Survey plans

Parcel Lines

Parcel Plans

Parcel Polygons

Parcel Points

Control Points

Line Points

Parcel Fabric

Page 27: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Extending a geodatabaseDemonstration

Page 28: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Conclusion

Page 29: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Geodatabase: An IntroductionConclusion

Overview

BasicExtended

Geodatabase

• What is a geodatabase?

• Types of geodatabases

• Geodatabase workflow

• Geodatabase tools

• Data structures

- Table

- Feature class

- Raster

• Rules and relationships

- Subtype

- Domain

- Relationship class

- Feature dataset

• Attachments

• Geodatabase topology

• Geometric / Utility networks

• Network datasets

• Parcel fabric

Page 30: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

ResourcesConclusion

• Technical Workshops(Search agenda for “geodata”)

- Managing Your Distributed Geodatabase

- Planning an Enterprise Geodatabase

- Editing Multiuser Geodatabases: An Introduction

- Geodatabase Best Practices

- Geodatabase Administration: An Introduction

• Esri Showcase

- Spatial Data Management

- Hands-On Learning Lab

• GeoNet

- UC2017 Technical Workshop –Geodatabase: An Introduction

Page 31: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the

Please take our survey on the Esri Events App

Download the Esri Events app and find

your event

Select the session you attended

Complete Answersand Select “Submit”

Scroll down to find the survey

Page 32: Geodatabase: An Introduction - Esri...Getting started Geodatabase: An Introduction Overview Extended Basic Geodatabase Working with geodatabases Demonstration Overview What is the