DBA Data[Home] [Help]

PACKAGE: APPS.CSFW_SPATIAL_PUB

Source


1 PACKAGE CSFW_SPATIAL_PUB AUTHID CURRENT_USER as
2 /* $Header: csfwspls.pls 120.0 2005/05/25 11:12:28 appldev noship $ */
3 -- Start of Comments
4 -- Package name     : CSFW_SPATIAL_PUB
5 -- Purpose          : to get the distance between 2 points
6 -- History          :
7 -- NOTE             : Please see the function details for additional information
8 -- End of Comments
9 
10 FUNCTION GET_AERIAL_DISTANCE(   p_start_point MDSYS.SDO_GEOMETRY,
11                                 p_end_point      MDSYS.SDO_GEOMETRY,
12                                 p_unit_of_measure varchar2 )
13          RETURN number;
14 
15 
16 FUNCTION GET_AERIAL_DISTANCE(   p_start_longitude number,
17                                 p_start_latitude  number,
18                                 p_end_longitude   number,
19                                 p_end_latitude    number,
20                                 p_unit_of_measure varchar2 )
21           RETURN number;
22 
23 FUNCTION CHECK_GEOMETRY_POINT(  p_point MDSYS.SDO_GEOMETRY)
24          RETURN VARCHAR;
25 
26 
27 
28 END CSFW_SPATIAL_PUB;