6.92 SDO_NET.LRS_GEOMETRY_NETWORK
Format
SDO_NET.LRS_GEOMETRY_NETWORK( network IN VARCHAR2 ) RETURN VARCHAR2;
Description
Returns the string TRUE if the network is a spatial network containing LRS geometries; returns the string FALSE if the network is not a spatial network containing LRS geometries.
Usage Notes
A network contains LRS geometries if the GEOMETRY_TYPE column in its entry in the USER_SDO_NETWORK_METADATA view contains the value LRS_GEOMETRY. (The USER_SDO_NETWORK_METADATA view is explained in xxx_SDO_NETWORK_METADATA Views.)
Examples
The following example checks if the network named ROADS_NETWORK is a spatial network containing LRS geometries.
SELECT SDO_NET.LRS_GEOMETRY_NETWORK('ROADS_NETWORK') FROM DUAL;
SDO_NET.LRS_GEOMETRY_NETWORK('ROADS_NETWORK')
--------------------------------------------------------------------------------
TRUEParent topic: SDO_NET Package Subprograms