Description Usage Arguments Value Examples
Calculate azimuth and altitude from geographical coordinates of origin and foresight
1 2 3 4 | alignment2equatorial(geographic_latitude.origin,
geographic_longitude.origin, geographic_altitude.origin,
geographic_latitude.foresight, geographic_longitude.foresight,
geographic_altitude.foresight)
|
geographic_latitude.origin |
Geographical latitude of the origin in degrees |
geographic_longitude.origin |
Geographical longitude of the origin in degrees |
geographic_altitude.origin |
Geographical altitude of the origin in meters |
geographic_latitude.foresight |
Geographical latitude of the foresight in degrees |
geographic_longitude.foresight |
Geographical longitude of the foresight in degrees |
geographic_altitude.foresight |
Geographical altitude of the foresight in meters |
Horizontal coordinates
azimuth Azimuth in degrees
altitude Altitude in hour angle
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | geographic_latitude.origin<-c(str2degrees("42\u00b026'58.00\u0022N"),
str2degrees("42\u00b026'58.00\u0022N"))
geographic_longitude.origin<-c(str2degrees("06\u00b003'54.00\u0022W"),
str2degrees("06\u00b003'54.00\u0022W"))
geographic_altitude.origin<-c(850,850)
geographic_latitude.foresight<-c(str2degrees("42\u00b019'43.50\u0022N"),
str2degrees("42\u00b020'45.00\u0022N"))
geographic_longitude.foresight<-c(str2degrees("06\u00b021'51.00\u0022W"),
str2degrees("06\u00b023'37.00\u0022W"))
geographic_altitude.foresight<-c(2047,2183)
do.call(alignment2equatorial,
data.frame(geographic_latitude.origin,
geographic_longitude.origin,
geographic_altitude.origin,
geographic_latitude.foresight,
geographic_longitude.foresight,
geographic_altitude.foresight))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.