CARIS HPD : HPD® Server API : Feature Data : Feature Object Views : FEATURE_GEOMETRY_IMAGE_VW
 

FEATURE_GEOMETRY_IMAGE_VW

Displays information about image features in the common feature storage. Any spatial representation can be queried, including obsolete versions. See also FEATURE_GEOMETRY_VW for more information.

Output

Column

Type

Description

rep_id

NUMBER

The spatial representation id. This represents the geometry.

filename

VARCHAR2

The image file name.

imagedata

BLOB

The image as a BLOB.

Example

select i.filename, i.imagedata, g.LLDG_geom

from source_feature_vw sv, feature_geometry_vw g, feature_geometry_image_vw i

where sv.rep_id = g.rep_id

and sv.rep_id = i.rep_id

and sv.foid = FoidStringToNumber('1C 0000000001 00001');