fHtmCoverCircleEq(ra,dec,radiusArcMin) returns a trixel table (a list) covering
the circle centered at that J2000 ra,dec, within that arc-minute radius.
A trixel table is a list of HtmStart,HtmStop pairs that describe
the HTM triangles (all points of a triangle are between its HtmStart and HtmStop.
Namespace: Spherical.Htmthe circle centered at that J2000 ra,dec, within that arc-minute radius.
A trixel table is a list of HtmStart,HtmStop pairs that describe
the HTM triangles (all points of a triangle are between its HtmStart and HtmStop.
Assembly: SphericalHtm (in SphericalHtm.dll) Version: 1.0.0.0
Syntax
C# |
---|
public static IEnumerable fHtmCoverCircleEq( SqlDouble ra, SqlDouble dec, SqlDouble radiusArcMin ) |
Visual C++ |
---|
public: static IEnumerable^ fHtmCoverCircleEq( SqlDouble ra, SqlDouble dec, SqlDouble radiusArcMin ) |
F# |
---|
static member fHtmCoverCircleEq : ra:SqlDouble * dec:SqlDouble * radiusArcMin:SqlDouble -> IEnumerable |
Parameters
- ra
- Type: System.Data.SqlTypes..::..SqlDouble
double, right ascencion of centerpoint (degrees)
- dec
- Type: System.Data.SqlTypes..::..SqlDouble
double, declination of centerpoint (degrees)
- radiusArcMin
- Type: System.Data.SqlTypes..::..SqlDouble
double, radius in arcminutes
Return Value
IEnummerable(HtmIDStart bigint, HtmIDStop bigint)Examples
CopyC#
create function fHtmCoverCircleEq(@ra float, @dec float, @radiusArcMin float) returns bigint as external name HTM.Sql.fHtmCoverCircleEq