fHtmCoverList(regionspec) returns a list of HtmID's
that describe the HTM triangles covering the region.
Namespace: Spherical.HtmAssembly: SphericalHtm (in SphericalHtm.dll) Version: 1.0.0.0
Syntax
C# |
---|
public static IEnumerable fHtmCoverList( SqlString coverspec ) |
Visual C++ |
---|
public: static IEnumerable^ fHtmCoverList( SqlString coverspec ) |
F# |
---|
static member fHtmCoverList : coverspec:SqlString -> IEnumerable |
Parameters
- coverspec
- Type: System.Data.SqlTypes..::..SqlString
a string satisfying the region syntax
Return Value
IEnummerable(HtmID bigint)Examples
CopyC#
create function fHtmCoverList(@region nvarchar(max)) returns table (HtmID bigint) as external name HTM.Sql.fHtmCoverList select * from fHtmCoverList('CIRCLE J2000 195 0 1')