একটি গুগল ম্যাপে দিন এবং রাত অঙ্কন


12

আমি সময় সময় একটি নির্বিচারে বিন্দুর জন্য, একটি গুগল মানচিত্রে দিন / রাত প্লট করতে খুঁজছি। আমি মানচিত্রের টাইল তৈরির সাথে পরিচিত; আমি পৃথিবীর কোনও নির্দিষ্ট বিন্দু বর্তমানে দিবালোক বা অন্ধকারে আছে কিনা তা অন্যথায়, বা অন্যথায় দিনের / রাতের ইন্টারফেসের মানচিত্রটি মানচিত্রে আঁকানোর জন্য আমাকে একটি অ্যালগরিদমের সন্ধান করছি।

আমি কিছু অনুসন্ধান করেছি, তবে এখানে সমস্যা ডোমেন সম্পর্কে আমি কী পরিমাণ শর্তাবলী সন্ধান করতে হবে তা জানতে আমি এমনকি যথেষ্ট জানি না!

কোন ধারনা? নিখুঁত হতে হবে না - মূলত, আমি সূর্যোদয় এবং সূর্যাস্তের ফটোগুলির ফ্লিকার জিওলোকেশন ডেটার (এবং তাদের "তারিখ গ্রহণের" টাইমস্ট্যাম্পগুলি) বাস্তবতার সাথে তুলনা করছি এবং এটি আমাকে এটি রূপায়িত করতে সহায়তা করার জন্য।


সমাধানগুলি gis.stackexchange.com/questions/17184/… এ খুব ঘনিষ্ঠভাবে সম্পর্কিত প্রশ্নে উপস্থিত হয় ।
whuber

উত্তর:


6

এই পৃষ্ঠাটি 1 ডিগ্রি সমীকরণ ভাল দেয়। দেখে মনে হচ্ছে এই কোডটি এটিও গণনা করে তবে আমি আসলে চেক করি নি।


চমত্কার, ঠিক আমি যা খুঁজছিলাম। এবং হ্যাঁ, এই কোডটির vplanet.c এর প্রজিলাম () ফাংশনের মতো দেখতে সেই অ্যালগরিদমের সাথে বেশ ভাল মিলছে, যাতে অবশ্যই আমাকে সঠিক ট্র্যাকের নিচে নামিয়ে আনতে হবে, ধন্যবাদ।
ম্যাট গিবসন

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.vW.net/sunrise_sunset_algorithm.htm

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.