Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Applying and Extending Oracle Spatial

You're reading from  Applying and Extending Oracle Spatial

Product type Book
Published in Sep 2013
Publisher Packt
ISBN-13 9781849686365
Pages 568 pages
Edition 1st Edition
Languages

Table of Contents (20) Chapters

Applying and Extending Oracle Spatial
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
1. Defining a Data Model for Spatial Data Storage 2. Importing and Exporting Spatial Data 3. Using Database Features in Spatial Applications 4. Replicating Geometries 5. Partitioning of Data Using Spatial Keys 6. Implementing New Functions 7. Editing, Transforming, and Constructing Geometries 8. Using and Imitating Linear Referencing Functions 9. Raster Analysis with GeoRaster 10. Integrating Java Technologies with Oracle Spatial 11. SQL/MM – A Basis for Cross-platform, Inter-operable, and Reusable SQL Table Comparing Simple Feature Access/SQL and SQL/MM–Spatial
Use of TREAT and IS OF TYPE with ST_GEOMETRY Index

Programming for cross-database deployment


The main mechanism for implementing object-relational querying is, of course, SQL. As such it is the principle element through which we should aim to use for maximal cross-database querying. In this section, we will first look at querying the basic geometry types, and then finish by putting all we have learned together to implement something of greater use in day-to-day spatial processing.

Querying ST_POINT geometries

The querying of points is quite simple:

– SQL Server 2012
Select a.geom.STX as x, a.geom.STY as y
  From (Select geometry::STPointFromText('POINT(301301.0 5201201.0)',28355) 
                 as geom) a;

-- PostgreSQL
Select ST_X(a.geom) as x, ST_Y(a.geom) as y
  From (Select ST_PointFromText('POINT(301301.0 5201201.0)',28355)
                   as geom) a;

-- Oracle ST 
Select a.geom.ST_X() as x, a.geom.ST_Y() as y
  From (Select book.ST_Point('POINT(301301.0 5201201.0)',28355) 
                   as geom 
          From dual) a;
-...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}