fHtmCoverRegionAdvanced(region) returns a list of HtmStart,HtmStop pairs
that describe the HTM triangles covering the region. Inner and Outer triangles. are treated separately.

Namespace: Spherical.Htm
Assembly: SphericalHtm (in SphericalHtm.dll) Version: 1.0.0.0

Syntax

C#
public static IEnumerable fHtmCoverRegionAdvanced(
	SqlString coverspec
)
Visual C++
public:
static IEnumerable^ fHtmCoverRegionAdvanced(
	SqlString coverspec
)
F#
static member fHtmCoverRegionAdvanced : 
        coverspec:SqlString -> IEnumerable 

Parameters

coverspec
Type: System.Data.SqlTypes..::..SqlString
a string satisfying the region syntax

Return Value

IEnummerable(HtmIDStart bigint, HtmIDend bigint, flag smallint)

Examples

CopyC#
    create function fHtmCoverRegionAdvanced(@region nvarchar(max)) 
            returns table  (HtmIDstart bigint, HtmIDend bigint, flag smallint)
                 as external name HTM.Sql.fHtmCoverRegionAdvanced
select * from fHtmCoverRegionAdvancedn('CIRCLE J2000 195 0 1')

See Also