|
what exactly means:implementation of spatial relational operators in databases?
(comments are locked)
|
|
Spatial databases are those that contain data about physical space - so that can either be geometric data which is in flat planes, or geographic data which is in curved planes, like the earth's surface. The operators for those types of data are defined here for geography and here for gerometry. Because the two types of spatial data are implemented as CLR types in SQL Server, the operations on them are performed by the CLR type operators, both static (i.e. call them with typename::methodname) and instanced (i.e. call them with columnname.functionname). Holy cow. I've never seen it summarized quite so well. Nice job.
Feb 10 '10 at 07:22 PM
Grant Fritchey ♦♦
@Grant - thank you kindly sir!
Feb 10 '10 at 08:57 PM
Matt Whitfield ♦♦
Thank you, Matt,for your help.
Feb 12 '10 at 05:44 AM
ina
(comments are locked)
|

