ee.Date.getFraction

यह फ़ंक्शन, तारीख के बीत चुके समय को किसी तय यूनिट में दिखाता है. यह यूनिट 0 से 1 के बीच की होनी चाहिए.

इस्तेमालरिटर्न
Date.getFraction(unit, timeZone)फ़्लोट
आर्ग्यूमेंटटाइपविवरण
यह: dateतारीख
unitस्ट्रिंग'साल', 'महीना', 'हफ़्ता', 'दिन', 'घंटा', 'मिनट' या 'सेकंड' में से कोई एक.
timeZoneस्ट्रिंग, डिफ़ॉल्ट: nullटाइम ज़ोन (उदाहरण के लिए, 'America/Los_Angeles'); डिफ़ॉल्ट रूप से यूटीसी पर सेट होता है.

उदाहरण

कोड एडिटर (JavaScript)

var date = ee.Date('2021-4-30T07:15:31.24');

print('Elapsed fraction of a year', date.getFraction('year'));
print('Elapsed fraction of a month', date.getFraction('month'));
print('Elapsed fraction of a week', date.getFraction('week'));
print('Elapsed fraction of a day', date.getFraction('day'));
print('Elapsed fraction of an hour', date.getFraction('hour'));
print('Elapsed fraction of a minute', date.getFraction('minute'));
print('Elapsed fraction of a second', date.getFraction('second'));

Python सेटअप

Python API के बारे में जानकारी पाने और इंटरैक्टिव डेवलपमेंट के लिए geemap का इस्तेमाल करने के लिए, Python एनवायरमेंट पेज देखें.

import ee
import geemap.core as geemap

Colab (Python)

date = ee.Date('2021-4-30T07:15:31.24')

display('Elapsed fraction of a year:', date.getFraction('year'))
display('Elapsed fraction of a month:', date.getFraction('month'))
display('Elapsed fraction of a week:', date.getFraction('week'))
display('Elapsed fraction of a day:', date.getFraction('day'))
display('Elapsed fraction of an hour:', date.getFraction('hour'))
display('Elapsed fraction of a minute:', date.getFraction('minute'))
display('Elapsed fraction of a second:', date.getFraction('second'))