Get Familiar with Spatial Data

Slides:



Advertisements
Similar presentations
Europe’s Premier Community SQL Server Conference # SQLBITS.
Advertisements

Map Projections Introduction © 2005, Austin Troy.
Map Projections & Coordinate Systems
Applied Cartography and Introduction to GIS GEOG 2017 EL
CS 128/ES Lecture 3a1 Map projections. CS 128/ES Lecture 3a2 The dilemma Maps are flat, but the Earth is not! Producing a perfect map is like.
Topic 2 – Spatial Representation
GUS: 0262 Fundamentals of GIS Lecture Presentation 2: Cartography in a Nutshell Jeremy Mennis Department of Geography and Urban Studies Temple University.
CS 128/ES Lecture 2b1 Coordinate systems & projections.
Geog 458: Map Sources and Error January 18, 2006 Georeferencing.
Map Projections (1/2) Francisco Olivera, Ph.D., P.E. Center for Research in Water Resources University of Texas at Austin.
Geodesy and Map Projections
Waldo Tobler’s Classic Paper, 1979
Map projections CS 128/ES Lecture 3a.
Introduction to GIS.
Map Projection & Coordinate Systems
Overview Ellipsoid Spheroid Geoid Datum Projection Coordinate System.
Geodesy, Map Projections and Coordinate Systems
Spatial Concepts Mathematical Types of Space –Euclidean –Network –Metric –Topologic.
shops/gis/docs/projections.ppt.
Geodesy and Map Projections Geodesy - the shape of the earth and definition of earth datums Map Projection - the transformation of a curved earth to a.
How to Spatially Enable Your IBM Informix Database Chris Bosch.
Maps - Resource A Map Projections
Map Projections RG 620 Week 5 May 08, 2013 Institute of Space Technology, Karachi RG 620 Week 5 May 08, 2013 Institute of Space Technology, Karachi.
Cartography: the science of map making A Round World in Plane Terms.
LECTURE 3B – CHART PROJECTION. Introduction to Chart Projection  Usually we read chart in coordinate system.  A projected coordinate system is defined.
Map Projections Reference Globe Transformation Map Projection Reference Ellipsoid Sphere of Equal Area Geoid 3D-2D Transformation Process.
Introduction to Cartography GEOG 2016 E Lecture-2 Geodesy and Projections.
Map Basics, partII GEOG 370 Christine Erlien, Instructor.
Map Basics Lecture #3, Intro to GIS spring Topics Map definitions Types of maps Map projections Geodetic Datums Coordinate Systems.
World Geography Chapter 1: The Tools of Geography.
Geography 70  Basic Geodesy  Map Projections  Coordinate Systems  Scale Locating Positions on the Earth.
The Round Earth to Flat Map: Map Projections for Designers SP 240 Cartography Alex Chaucer.
Copyright © 2000–2004 ESRI. All rights reserved. Introduction to ArcGIS I Working with georeferenced data.
Navigation NAU 102 Lesson 2. The Earth News Flash! It isn’t flat. But, it isn’t a perfect sphere either.
Map projections and datums
Tipe-tipe Spesifik and Sistem Koordinat © 2005, Austin Troy.
Map Projections.
® Making Location Count Copyright © 2010 Open Geospatial Consortium AIXM GML Profile CRS Considerations 75th OGC Technical Committee Sydney, Australia.
Review of Projections and Coordinate Systems
Get Familiar with Spatial Data. Slava Murygin – SQL SlavaSQL.BlogSpot.com.
How maps and globes represent our Earth?
Map Projections RG 620 May 16, 2014 Institute of Space Technology, Karachi RG 620 May 16, 2014 Institute of Space Technology, Karachi.
Introduction Grew up in Northern California
Coordinate Systems and Map Projections
Map Projections RG 620 April 20, 2016
Fun with SQL Server Spatial Data
Spatial Referencing.
Mapping GIS Projections
Georeferencing Ming-Chun Lee.
Introduction to Coordinate Systems and Projections
Understanding & Using Spatial Data Features in SQL Server
Geography: The Study of Earth
Overview Ellipsoid Spheroid Geoid Datum Projection Coordinate System.
COORDINATE SYSTEMS AND MAP PROJECTIONS
Maps and Map Skills Why we use different maps..
Coordinate systems, Projections and Geo-referencing
Fun with SQL Server Spatial Data
Common Features of a Map
Harry Williams, Cartography
Maps Base maps Coordinate Systems, Datums, Projections
Datums and Coordinate Systems
Geography: The Study of Earth
Lecture 4 Geographic Coordinate System
Lecture 3 Map Projections
Map projections.
Models of the Earth.
Map Projections Displaying the earth on 2 dimensional maps
Imaginary Lines on a Map
Geography: The Study of Earth
Presentation transcript:

Get Familiar with Spatial Data

Slava Murygin – SQL Consultant @SlavaSQL SlavaSQL.BlogSpot.com

Introduction

Disclaimer: No Road Maps

Disclaimer: That is a very basic session for the Beginners. There will be no real world solutions. The Session is just an introduction in Spatial Data to break the ICE.

How can we use Spatial Data? Measurements: – Length; – Distance between objects; – Area of Objects; Intersection features: – Area of Intersection; – Combined/Excluded areas, Etc. True/False queries, Etc.

Spatial Data Glossary GIS – Geographic Information System; OGC – Open Geospatial Consortium – develops GIS standards; SRID – Spatial Reference ID based on the specific ellipsoid used for either flat-earth mapping or round-earth mapping; WKT – Well-Known Text; WKB – Well-Known Binary; EPSG – European Petroleum Survey Group; ESRI – Environmental Systems Research Institute – an international supplier of GIS software; NAD83 – North American Datum 1983; WGS84 – World Geodetic System 1984;

Basic Spatial Data Types Point LineString Polygon

Additional Spatial Data Types CircularString CompoundCurve Multipoint MultiLineString MultiPolygon GeometryCollection

Most popular Spatial Data Methods STGeomFromText – Generates Spatial Data; STIsValid – Checks if Geo Instance is well formed; STAsText – Represents Spatial Data as a Text; STBuffer – Returns a Polygon from 0/1/2 D object; STArea – Returns total surface area; STLength – Returns combined perimeter; STCentroid – Returns the geometric center; STDistance – Returns distance between two objects; STIntersection – Returns Intersection object; STContains – Checks if one object contains another;

Demo 1 Spatial Data Types; Spatial Data Methods;

Geometry vs Geography

Geometry vs Geography Earth shape – Spheroid, Elipsoid, Geoid. Western Border = 276 Miles Eastern Border = 276 Miles Northern border = 343 Miles Southern border = 365 Miles

Map Projections Equirectangular – Simplest geometry; distances along meridians are conserved. Equator as the standard parallel;

Map Projections Mercator – Lines of constant bearing are straight, aiding navigation. Areas inflate with latitude, becoming so extreme that the map cannot show the poles.;

Map Projections Robinson – Computed by interpolation of tabulated values;

Map Projections Werner – Distances from the North Pole are correct as are the curved distances along parallels; Sinusoidal – Meridians are sinusoids; parallels are equally spaced. Aspect ratio of 2:1. Distances along parallels are conserved; Bonne – General case of both Werner and Sinusoidal; Armadillo, Lambert conformal conic, Albers conic, Etc. http://en.wikipedia.org/wiki/List_of_map_projections

Demo 2 Geometry vs Geography;

Geospatial Data Issue Inaccuracy – Due to landscape and irregular shape;

Space Spatial Data – No Issues Star Map is the Celestial Sphere

Demo 3 Making Star Maps

The End Slava Murygin @SlavaSQL SlavaSQL.BlogSpot.com

Demo 4 Have some Fun!