Google지도에서 낮과 밤을 그리기


12

임의의 특정 시점에 대해 Google지도에 주 / 야를 플롯하려고합니다. 지도 타일 생성에 익숙합니다. 지구상의 특정 지점이 현재 일광인지 어둠인지 또는 낮 / 밤 인터페이스의 곡선을지도에 표시하는 알고리즘을 찾고 있습니다.

몇 가지 검색을 수행했지만 검색 할 용어를 알기 위해 여기서 문제 영역에 대해 충분히 알지 못할 수도 있습니다!

어떤 아이디어? 완벽 할 필요는 없습니다. 기본적으로 일출 및 일몰 사진 (및 "촬영 한 날짜"타임 스탬프)의 Flickr 지리적 위치 데이터를 현실과 비교하고 있으며이를 시각화하는 데 도움이됩니다.


해결책은 gis.stackexchange.com/questions/17184/…에 매우 밀접하게 관련된 질문에 나타납니다 .
whuber

답변:


6

페이지 는 1도에 이르는 방정식을 제공합니다. 이 코드 는 그것을 계산하는 것처럼 보이지만 실제로 확인하지는 않았습니다.


환상적이고, 내가 찾던 것. 그리고 예, vplanet.c의 projillum () 함수가 해당 코드와 잘 일치하는 것처럼 보이므로 올바른 트랙으로 향하게됩니다. 감사합니다.
매트 깁슨

2

또한 예 http://blog.char95.com/demos/daylight-on-google-maps/

    Sunrise/Sunset Algorithm

Source:
    Almanac for Computers, 1990
    published by Nautical Almanac Office
    United States Naval Observatory
    Washington, DC 20392

Inputs:
    day, month, year:      date of sunrise/sunset
    latitude, longitude:   location for sunrise/sunset
    zenith:                Sun's zenith for sunrise/sunset
      offical      = 90 degrees 50'
      civil        = 96 degrees
      nautical     = 102 degrees
      astronomical = 108 degrees

    NOTE: longitude is positive for East and negative for West
        NOTE: the algorithm assumes the use of a calculator with the
        trig functions in "degree" (rather than "radian") mode. Most
        programming languages assume radian arguments, requiring back
        and forth convertions. The factor is 180/pi. So, for instance,
        the equation RA = atan(0.91764 * tan(L)) would be coded as RA
        = (180/pi)*atan(0.91764 * tan((pi/180)*L)) to give a degree
        answer with a degree input for L.


1. first calculate the day of the year

    N1 = floor(275 * month / 9)
    N2 = floor((month + 9) / 12)
    N3 = (1 + floor((year - 4 * floor(year / 4) + 2) / 3))
    N = N1 - (N2 * N3) + day - 30

2. convert the longitude to hour value and calculate an approximate time

    lngHour = longitude / 15

    if rising time is desired:
      t = N + ((6 - lngHour) / 24)
    if setting time is desired:
      t = N + ((18 - lngHour) / 24)

3. calculate the Sun's mean anomaly

    M = (0.9856 * t) - 3.289

4. calculate the Sun's true longitude

    L = M + (1.916 * sin(M)) + (0.020 * sin(2 * M)) + 282.634
    NOTE: L potentially needs to be adjusted into the range [0,360) by adding/subtracting 360

5a. calculate the Sun's right ascension

    RA = atan(0.91764 * tan(L))
    NOTE: RA potentially needs to be adjusted into the range [0,360) by adding/subtracting 360

5b. right ascension value needs to be in the same quadrant as L

    Lquadrant  = (floor( L/90)) * 90
    RAquadrant = (floor(RA/90)) * 90
    RA = RA + (Lquadrant - RAquadrant)

5c. right ascension value needs to be converted into hours

    RA = RA / 15

6. calculate the Sun's declination

    sinDec = 0.39782 * sin(L)
    cosDec = cos(asin(sinDec))

7a. calculate the Sun's local hour angle

    cosH = (cos(zenith) - (sinDec * sin(latitude))) / (cosDec * cos(latitude))

    if (cosH >  1) 
      the sun never rises on this location (on the specified date)
    if (cosH < -1)
      the sun never sets on this location (on the specified date)

7b. finish calculating H and convert into hours

    if if rising time is desired:
      H = 360 - acos(cosH)
    if setting time is desired:
      H = acos(cosH)

    H = H / 15

8. calculate local mean time of rising/setting

    T = H + RA - (0.06571 * t) - 6.622

9. adjust back to UTC

    UT = T - lngHour
    NOTE: UT potentially needs to be adjusted into the range [0,24) by adding/subtracting 24

10. convert UT value to local time zone of latitude/longitude

    localT = UT + localOffset

알고리즘 http://williams.best.vwh.net/sunrise_sunset_algorithm.htm 사용

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.