Up

_scienceDateSun

Return the sunrise / sunset, anywhere on Earth.

Prototype :

fun [[I I] [I I] [I I I]] [S S]

Return : [S S] sunrise and sunset, in UTC, "--" if not sunrise / sunset, or nil if error

See also :

Example :

fun main ()=
	_showconsole;
	
	_fooS sprintf "sunrise : %s  sunset : %s" _scienceDateSun [51 12] [(-5) 21] nil; // sunrise : 6:11  sunset : 18:16
	0;;