 | CIGRFCalc Method |
Calculate IGRF data for a given IGRF model.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void Calc(
double el,
double lon,
double lat,
ref double str_val,
ref double inc,
ref double dec
)
public void Calc(
double el,
double lon,
double lat,
ref double str_val,
ref double inc,
ref double dec
)
Public Sub Calc (
el As Double,
lon As Double,
lat As Double,
ByRef str_val As Double,
ByRef inc As Double,
ByRef dec As Double
)
Public Sub Calc (
el As Double,
lon As Double,
lat As Double,
ByRef str_val As Double,
ByRef inc As Double,
ByRef dec As Double
)
public:
void Calc(
double el,
double lon,
double lat,
double% str_val,
double% inc,
double% dec
)
public:
void Calc(
double el,
double lon,
double lat,
double% str_val,
double% inc,
double% dec
)
member Calc :
el : float *
lon : float *
lat : float *
str_val : float byref *
inc : float byref *
dec : float byref -> unit
member Calc :
el : float *
lon : float *
lat : float *
str_val : float byref *
inc : float byref *
dec : float byref -> unit
Parameters
- el
- Type: SystemDouble
Elevation (metres) - lon
- Type: SystemDouble
Longitude (-180 to 180) - lat
- Type: SystemDouble
Latitude (-90 to 90) Returns - str_val
- Type: SystemDouble
Field strength - inc
- Type: SystemDouble
Field inclination - dec
- Type: SystemDouble
Field declination
Remarks
Calculate IGRF data (total field, inclination, and declination)
for a given IGRF model. The model used will be the same as that
obtained with Create_IGRF.
See Also