Example: ST_SpheroidalDistance - Advanced SQL Engine - Teradata Database

Geospatial Data Types

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-23
dita:mapPath
vci1556127188517.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1181
lifecycle
previous
Product Category
Teradata Vantage™

The following two examples show how to use the ST_SpheroidalDistance method to get the spheroidal distance between Madison (-89.39, 43.09) and Chicago (-87.65, 41.90):

   CREATE TABLE sample_points1 (skey1 INTEGER, point1 ST_Geometry);

   INSERT INTO sample_points1 VALUES (101, 'POINT(-89.39 43.09)');

   SELECT point1.ST_SpheroidalDistance(
      new ST_Geometry(
                    'ST_POINT(-87.65 41.90)'), 6378137, 298.257223563)
   FROM sample_points1;

   SELECT point1.ST_SpheroidalDistance(
      new ST_Geometry('POINT(-87.65 41.90)') )
   FROM sample_points1;