SlideShare una empresa de Scribd logo
1 de 21
SQL Server 2008 Spatial  Geography  Implemented in ASP.net and Virtual Earth  Michael Stark StarkNetwork.com Michael@starknetwork.com blog.starknetwork.com
Outline Background Overview Spatial in SQL 2008 Creating a spatial Query in SSMS Spatial Query in ListView control Spatial Query wired up to Virtual Earth  21 Other ideas for mapping Implementation Issues This session is … a quick tour of  the spatial features of  SQL Server 2008. This session is NOT … An in-depth study of the spatial features of SQL Server 2008 An in-depth explanation of ListView Control An in-depth explanation of Virtual Earth
Overview Tyler’s Article SQL Server Magazine SQLMAG.com  Instant Doc ID  100528 Tyler Chessman's article in SQL Server Magazine's December 2008 issue is my primary source of information to implement my spatial solutions.  Visit sqlmag.com and search for instant doc ID 100528.  I have a link on my blog to the article.
Overview What is Spatial Data? Example of Spatial Data SQL Server’s answer Spatial data represents the shape and physical location of an object.   The object can be a house, business, sub-division, or a county.   SQL Server 2008 has two new data types GEOMETRY and GEOGRAPHY.   GEOMETRY works with flat objects.  GEOGRAPHY considers the shape of the earth.
GEOMETRYGEOGRAPHY	 CLR Data Types No need to enable CLR Many Methods Open Geospatial Consortium GEOGRAPHY and GEOMETRY are CLR data types.  You do not need to have CLR enabled on the SQL Server instance.   Microsoft has provided a long list of OGC methods.   These are methods that are part of the independent  Open Geospatial Consortium list of specifications.
OGC Methods	 OGC  Open Geospatial Consortium SQL Server 2008 supports  the Open Geospatial Consortium (OGC) methods on geometry instances.   These methods  make it very easy to perform  geospatial tasks that were once very difficult. STArea STAsText STBoundary STBuffer STCentroid STContains STConvexHull STCrosses STDifference
OGC Methods	 OGC  Open Geospatial Consortium SQL Server 2008 supports  the Open Geospatial Consortium (OGC) methods on geometry instances.   These methods  make it very easy to perform  geospatial tasks that were once very difficult. STDimension STDisJoint STDistance STEndPoint STEnvelope STEquals STExteriorRing STGeometryN STGeometryType
OGC Methods	 OGC  Open Geospatial Consortium SQL Server 2008 supports  the Open Geospatial Consortium (OGC) methods on geometry instances.   These methods  make it very easy to perform  geospatial tasks that were once very difficult. STInteriorRing STIntersection STIntersects STIsClosed STIsEmpty STIsRing STIsSimple STIsValid STLength
OGC Methods	 OGC  Open Geospatial Consortium SQL Server 2008 supports  the Open Geospatial Consortium (OGC) methods on geometry instances.   These methods  make it very easy to perform  geospatial tasks that were once very difficult. STNumGeometries STNumInteriorRing STNumPoints STOverlaps STPointN STPointOnSurface STIsSimple STRelate STSrid
OGC Methods	 OGC  Open Geospatial Consortium SQL Server 2008 supports  the Open Geospatial Consortium (OGC) methods on geometry instances.   These methods  make it very easy to perform  geospatial tasks that were once very difficult. STStartPoint STSymDifference STTouches STUnion STWithin STX STY
DEMONSTRATION	 List of functions to demonstrate I will demonstrate  STGeomFromText STDistance AsGML STasText STGeometryType STNumPoints.   The demonstration will return a list of stores within a provided distance of a given point.
STDistance STDistance( Point , SRID ) The STDistance function requires an argument of the SQLgeometrytype Convert the latitude and longitude to SQLgeometrytype.  Declare a variable of the geography type.   Set the variable togeography::STGeomFromText('point(lon lat)',4326). Notice that  the point is a string. Notice there is no comma between lat and lon 4326 is an SRID and is used to tell the function what method to use to calculate distance on a not-so-round planet.
SQL Statement Declare @CodeGEOG  geography = geography::STGeomFromText('Point(-95.3410 29.7070)',4326); Select top(5) addr.AddressID as id , addr.addressline1,addr.city, addr.SpatialLocation, -- Will show the raw data addr.SpatialLocation.AsGml() as SpationalGML, addr.SpatialLocation.STAsText() as SpatialText, addr.SpatialLocation.STGeometryType() as GeoType, addr.SpatialLocation.STNumPoints() as Points, addr.SpatialLocation.STDistance(@CodeGEOG) as distance_in_meters, addr.SpatialLocation.STDistance(@CodeGEOG)/1609.344 as distance_in_miles from dbo.Addressaddr Where addr.SpatialLocation.STDistance(@CodeGEOG)/1609.344 < 50   order by distance_in_miles
SSMS A demonstration of running a spatial query DEMO
Into Action A very quick run through Wire-up Spatial Query to List View Control Virtual Earth
List View Control
Virtual Earth
21 Ways John O'Brien of the GEOWebGuru.com has compiled a list of 20 ways to use VirtualEarth.  See it here http://www.geowebguru.com/articles/86-twenty-ways-to-use-the-virtual-earth-platform-as-a-developer-  Visit Weather.com to see this flash and VirtualEarth in actionhttp://www.weather.com/weather/map/interactive/33626?from=36hr_topnav_undeclared  O’Brien lists 20 ways http://maps.live.com http://dev.live.com/virtualearth http://blogs.msdn.com/VirtualEarth3D/ And more I add one more way –  ,[object Object],[object Object]
Conclusion This session was … a quick tour of  the spatial features of  SQL Server 2008. This session was NOT … ,[object Object]
An in-depth explanation of ListView Control
An in-depth explanation of Virtual EarthBackground Overview Spatial in SQL 2008 Creating a spatial Query in SSMS Spatial Query in ListView control Spatial Query wired up to Virtual Earth  21 Ways to implement VE Deployment Issues

Más contenido relacionado

Destacado

Wireless Networking Final Exam Results
Wireless Networking Final Exam ResultsWireless Networking Final Exam Results
Wireless Networking Final Exam ResultsWalmart Super Center
 
Spatial Data in SQL Server
Spatial Data in SQL ServerSpatial Data in SQL Server
Spatial Data in SQL ServerEduardo Castro
 
SQL Server Query Processor
SQL Server Query ProcessorSQL Server Query Processor
SQL Server Query ProcessorEduardo Castro
 
Creating, Maintaining and Executing your Social Media Editorial Calendar
Creating, Maintaining and Executing your Social Media Editorial CalendarCreating, Maintaining and Executing your Social Media Editorial Calendar
Creating, Maintaining and Executing your Social Media Editorial CalendarTrivera Interactive
 
Vistazo a lo nuevo en SQL Server 2016
Vistazo a lo nuevo en SQL Server 2016Vistazo a lo nuevo en SQL Server 2016
Vistazo a lo nuevo en SQL Server 2016Eduardo Castro
 
Servicios cognitivos y su integración
Servicios cognitivos y su integraciónServicios cognitivos y su integración
Servicios cognitivos y su integraciónEduardo Castro
 

Destacado (6)

Wireless Networking Final Exam Results
Wireless Networking Final Exam ResultsWireless Networking Final Exam Results
Wireless Networking Final Exam Results
 
Spatial Data in SQL Server
Spatial Data in SQL ServerSpatial Data in SQL Server
Spatial Data in SQL Server
 
SQL Server Query Processor
SQL Server Query ProcessorSQL Server Query Processor
SQL Server Query Processor
 
Creating, Maintaining and Executing your Social Media Editorial Calendar
Creating, Maintaining and Executing your Social Media Editorial CalendarCreating, Maintaining and Executing your Social Media Editorial Calendar
Creating, Maintaining and Executing your Social Media Editorial Calendar
 
Vistazo a lo nuevo en SQL Server 2016
Vistazo a lo nuevo en SQL Server 2016Vistazo a lo nuevo en SQL Server 2016
Vistazo a lo nuevo en SQL Server 2016
 
Servicios cognitivos y su integración
Servicios cognitivos y su integraciónServicios cognitivos y su integración
Servicios cognitivos y su integración
 

Similar a Sql Saturday Spatial Data Ss2008 Michael Stark Copy

Intro To PostGIS
Intro To PostGISIntro To PostGIS
Intro To PostGISmleslie
 
Introduction to Oracle Spatial
Introduction to Oracle SpatialIntroduction to Oracle Spatial
Introduction to Oracle SpatialEhsan Hamzei
 
GeoMesa on Apache Spark SQL with Anthony Fox
GeoMesa on Apache Spark SQL with Anthony FoxGeoMesa on Apache Spark SQL with Anthony Fox
GeoMesa on Apache Spark SQL with Anthony FoxDatabricks
 
Representing and Querying Geospatial Information in the Semantic Web
Representing and Querying Geospatial Information in the Semantic WebRepresenting and Querying Geospatial Information in the Semantic Web
Representing and Querying Geospatial Information in the Semantic WebKostis Kyzirakos
 
2017 RM-URISA Track: Spatial SQL - The Best Kept Secret in the Geospatial World
2017 RM-URISA Track:  Spatial SQL - The Best Kept Secret in the Geospatial World2017 RM-URISA Track:  Spatial SQL - The Best Kept Secret in the Geospatial World
2017 RM-URISA Track: Spatial SQL - The Best Kept Secret in the Geospatial WorldGIS in the Rockies
 
Introduction To PostGIS
Introduction To PostGISIntroduction To PostGIS
Introduction To PostGISmleslie
 
ST-Toolkit, a Framework for Trajectory Data Warehousing
ST-Toolkit, a Framework for Trajectory Data WarehousingST-Toolkit, a Framework for Trajectory Data Warehousing
ST-Toolkit, a Framework for Trajectory Data WarehousingSimone Campora
 
LocationTech Projects
LocationTech ProjectsLocationTech Projects
LocationTech ProjectsJody Garnett
 
Building Scalable Semantic Geospatial RDF Stores
Building Scalable Semantic Geospatial RDF StoresBuilding Scalable Semantic Geospatial RDF Stores
Building Scalable Semantic Geospatial RDF StoresKostis Kyzirakos
 
Postgres Vision 2018: PostGIS and Spatial Extensions
Postgres Vision 2018: PostGIS and Spatial ExtensionsPostgres Vision 2018: PostGIS and Spatial Extensions
Postgres Vision 2018: PostGIS and Spatial ExtensionsEDB
 
Compass Framework
Compass FrameworkCompass Framework
Compass FrameworkLukas Vlcek
 
Collaborate 2009 - Migrating a Data Warehouse from Microsoft SQL Server to Or...
Collaborate 2009 - Migrating a Data Warehouse from Microsoft SQL Server to Or...Collaborate 2009 - Migrating a Data Warehouse from Microsoft SQL Server to Or...
Collaborate 2009 - Migrating a Data Warehouse from Microsoft SQL Server to Or...djkucera
 
SQL Geography Datatypes by Jared Nielsen and the FUZION Agency
SQL Geography Datatypes by Jared Nielsen and the FUZION AgencySQL Geography Datatypes by Jared Nielsen and the FUZION Agency
SQL Geography Datatypes by Jared Nielsen and the FUZION AgencyJared Nielsen
 

Similar a Sql Saturday Spatial Data Ss2008 Michael Stark Copy (20)

Intro To PostGIS
Intro To PostGISIntro To PostGIS
Intro To PostGIS
 
Introduction to Oracle Spatial
Introduction to Oracle SpatialIntroduction to Oracle Spatial
Introduction to Oracle Spatial
 
GeoMesa on Apache Spark SQL with Anthony Fox
GeoMesa on Apache Spark SQL with Anthony FoxGeoMesa on Apache Spark SQL with Anthony Fox
GeoMesa on Apache Spark SQL with Anthony Fox
 
GeoMesa on Spark SQL: Extracting Location Intelligence from Data
GeoMesa on Spark SQL: Extracting Location Intelligence from DataGeoMesa on Spark SQL: Extracting Location Intelligence from Data
GeoMesa on Spark SQL: Extracting Location Intelligence from Data
 
Spatial
SpatialSpatial
Spatial
 
SQL Windowing
SQL WindowingSQL Windowing
SQL Windowing
 
Representing and Querying Geospatial Information in the Semantic Web
Representing and Querying Geospatial Information in the Semantic WebRepresenting and Querying Geospatial Information in the Semantic Web
Representing and Querying Geospatial Information in the Semantic Web
 
2017 RM-URISA Track: Spatial SQL - The Best Kept Secret in the Geospatial World
2017 RM-URISA Track:  Spatial SQL - The Best Kept Secret in the Geospatial World2017 RM-URISA Track:  Spatial SQL - The Best Kept Secret in the Geospatial World
2017 RM-URISA Track: Spatial SQL - The Best Kept Secret in the Geospatial World
 
Introduction To PostGIS
Introduction To PostGISIntroduction To PostGIS
Introduction To PostGIS
 
ST-Toolkit, a Framework for Trajectory Data Warehousing
ST-Toolkit, a Framework for Trajectory Data WarehousingST-Toolkit, a Framework for Trajectory Data Warehousing
ST-Toolkit, a Framework for Trajectory Data Warehousing
 
LocationTech Projects
LocationTech ProjectsLocationTech Projects
LocationTech Projects
 
Building Scalable Semantic Geospatial RDF Stores
Building Scalable Semantic Geospatial RDF StoresBuilding Scalable Semantic Geospatial RDF Stores
Building Scalable Semantic Geospatial RDF Stores
 
Postgres Vision 2018: PostGIS and Spatial Extensions
Postgres Vision 2018: PostGIS and Spatial ExtensionsPostgres Vision 2018: PostGIS and Spatial Extensions
Postgres Vision 2018: PostGIS and Spatial Extensions
 
JDBC – Java Database Connectivity
JDBC – Java Database ConnectivityJDBC – Java Database Connectivity
JDBC – Java Database Connectivity
 
Coding Ajax
Coding AjaxCoding Ajax
Coding Ajax
 
Compass Framework
Compass FrameworkCompass Framework
Compass Framework
 
Spatial SQL
Spatial SQLSpatial SQL
Spatial SQL
 
Collaborate 2009 - Migrating a Data Warehouse from Microsoft SQL Server to Or...
Collaborate 2009 - Migrating a Data Warehouse from Microsoft SQL Server to Or...Collaborate 2009 - Migrating a Data Warehouse from Microsoft SQL Server to Or...
Collaborate 2009 - Migrating a Data Warehouse from Microsoft SQL Server to Or...
 
Oracle Spatial
Oracle SpatialOracle Spatial
Oracle Spatial
 
SQL Geography Datatypes by Jared Nielsen and the FUZION Agency
SQL Geography Datatypes by Jared Nielsen and the FUZION AgencySQL Geography Datatypes by Jared Nielsen and the FUZION Agency
SQL Geography Datatypes by Jared Nielsen and the FUZION Agency
 

Último

RSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors DataRSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors DataExhibitors Data
 
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...amitlee9823
 
Call Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service NoidaCall Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service Noidadlhescort
 
Falcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to ProsperityFalcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to Prosperityhemanthkumar470700
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxWorkforce Group
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableSeo
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfAdmir Softic
 
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...allensay1
 
Phases of Negotiation .pptx
 Phases of Negotiation .pptx Phases of Negotiation .pptx
Phases of Negotiation .pptxnandhinijagan9867
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Roland Driesen
 
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...lizamodels9
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...lizamodels9
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Serviceritikaroy0888
 
Famous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st CenturyFamous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st Centuryrwgiffor
 
Organizational Transformation Lead with Culture
Organizational Transformation Lead with CultureOrganizational Transformation Lead with Culture
Organizational Transformation Lead with CultureSeta Wicaksana
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangaloreamitlee9823
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...lizamodels9
 

Último (20)

RSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors DataRSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors Data
 
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
 
Call Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service NoidaCall Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service Noida
 
Falcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to ProsperityFalcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to Prosperity
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptx
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
 
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
 
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
 
Falcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in indiaFalcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in india
 
Phases of Negotiation .pptx
 Phases of Negotiation .pptx Phases of Negotiation .pptx
Phases of Negotiation .pptx
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...
 
VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Service
 
Famous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st CenturyFamous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st Century
 
Organizational Transformation Lead with Culture
Organizational Transformation Lead with CultureOrganizational Transformation Lead with Culture
Organizational Transformation Lead with Culture
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
 

Sql Saturday Spatial Data Ss2008 Michael Stark Copy

  • 1. SQL Server 2008 Spatial Geography Implemented in ASP.net and Virtual Earth Michael Stark StarkNetwork.com Michael@starknetwork.com blog.starknetwork.com
  • 2. Outline Background Overview Spatial in SQL 2008 Creating a spatial Query in SSMS Spatial Query in ListView control Spatial Query wired up to Virtual Earth 21 Other ideas for mapping Implementation Issues This session is … a quick tour of the spatial features of SQL Server 2008. This session is NOT … An in-depth study of the spatial features of SQL Server 2008 An in-depth explanation of ListView Control An in-depth explanation of Virtual Earth
  • 3. Overview Tyler’s Article SQL Server Magazine SQLMAG.com Instant Doc ID 100528 Tyler Chessman's article in SQL Server Magazine's December 2008 issue is my primary source of information to implement my spatial solutions. Visit sqlmag.com and search for instant doc ID 100528. I have a link on my blog to the article.
  • 4. Overview What is Spatial Data? Example of Spatial Data SQL Server’s answer Spatial data represents the shape and physical location of an object. The object can be a house, business, sub-division, or a county. SQL Server 2008 has two new data types GEOMETRY and GEOGRAPHY. GEOMETRY works with flat objects. GEOGRAPHY considers the shape of the earth.
  • 5. GEOMETRYGEOGRAPHY CLR Data Types No need to enable CLR Many Methods Open Geospatial Consortium GEOGRAPHY and GEOMETRY are CLR data types. You do not need to have CLR enabled on the SQL Server instance. Microsoft has provided a long list of OGC methods. These are methods that are part of the independent Open Geospatial Consortium list of specifications.
  • 6. OGC Methods OGC Open Geospatial Consortium SQL Server 2008 supports the Open Geospatial Consortium (OGC) methods on geometry instances. These methods make it very easy to perform geospatial tasks that were once very difficult. STArea STAsText STBoundary STBuffer STCentroid STContains STConvexHull STCrosses STDifference
  • 7. OGC Methods OGC Open Geospatial Consortium SQL Server 2008 supports the Open Geospatial Consortium (OGC) methods on geometry instances. These methods make it very easy to perform geospatial tasks that were once very difficult. STDimension STDisJoint STDistance STEndPoint STEnvelope STEquals STExteriorRing STGeometryN STGeometryType
  • 8. OGC Methods OGC Open Geospatial Consortium SQL Server 2008 supports the Open Geospatial Consortium (OGC) methods on geometry instances. These methods make it very easy to perform geospatial tasks that were once very difficult. STInteriorRing STIntersection STIntersects STIsClosed STIsEmpty STIsRing STIsSimple STIsValid STLength
  • 9. OGC Methods OGC Open Geospatial Consortium SQL Server 2008 supports the Open Geospatial Consortium (OGC) methods on geometry instances. These methods make it very easy to perform geospatial tasks that were once very difficult. STNumGeometries STNumInteriorRing STNumPoints STOverlaps STPointN STPointOnSurface STIsSimple STRelate STSrid
  • 10. OGC Methods OGC Open Geospatial Consortium SQL Server 2008 supports the Open Geospatial Consortium (OGC) methods on geometry instances. These methods make it very easy to perform geospatial tasks that were once very difficult. STStartPoint STSymDifference STTouches STUnion STWithin STX STY
  • 11. DEMONSTRATION List of functions to demonstrate I will demonstrate STGeomFromText STDistance AsGML STasText STGeometryType STNumPoints. The demonstration will return a list of stores within a provided distance of a given point.
  • 12. STDistance STDistance( Point , SRID ) The STDistance function requires an argument of the SQLgeometrytype Convert the latitude and longitude to SQLgeometrytype. Declare a variable of the geography type. Set the variable togeography::STGeomFromText('point(lon lat)',4326). Notice that the point is a string. Notice there is no comma between lat and lon 4326 is an SRID and is used to tell the function what method to use to calculate distance on a not-so-round planet.
  • 13. SQL Statement Declare @CodeGEOG geography = geography::STGeomFromText('Point(-95.3410 29.7070)',4326); Select top(5) addr.AddressID as id , addr.addressline1,addr.city, addr.SpatialLocation, -- Will show the raw data addr.SpatialLocation.AsGml() as SpationalGML, addr.SpatialLocation.STAsText() as SpatialText, addr.SpatialLocation.STGeometryType() as GeoType, addr.SpatialLocation.STNumPoints() as Points, addr.SpatialLocation.STDistance(@CodeGEOG) as distance_in_meters, addr.SpatialLocation.STDistance(@CodeGEOG)/1609.344 as distance_in_miles from dbo.Addressaddr Where addr.SpatialLocation.STDistance(@CodeGEOG)/1609.344 < 50 order by distance_in_miles
  • 14. SSMS A demonstration of running a spatial query DEMO
  • 15. Into Action A very quick run through Wire-up Spatial Query to List View Control Virtual Earth
  • 18.
  • 19.
  • 20. An in-depth explanation of ListView Control
  • 21. An in-depth explanation of Virtual EarthBackground Overview Spatial in SQL 2008 Creating a spatial Query in SSMS Spatial Query in ListView control Spatial Query wired up to Virtual Earth 21 Ways to implement VE Deployment Issues
  • 22. SQL Server 2008 Spatial Geography Implemented in ASP.net and Virtual Earth Michael Stark StarkNetwork.com Michael@starknetwork.com http://blog.starknetwork.com