सूचना : जिन गैर-व्यावसायिक प्रोजेक्ट के लिए Earth Engine को
15 अप्रैल, 2025 से पहले रजिस्टर किया गया है उन्हें ऐक्सेस बनाए रखने के लिए,
गैर-व्यावसायिक इस्तेमाल से जुड़ी ज़रूरी शर्तों की पुष्टि करनी होगी. अगर आपने 26 सितंबर, 2025 तक पुष्टि नहीं की, तो आपके ऐक्सेस को होल्ड पर रखा जा सकता है.
सुझाव भेजें
ee.PixelType
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
यह फ़ंक्शन, दिए गए सटीक मान के हिसाब से PixelType दिखाता है. इसमें हर एलिमेंट के लिए दी गई सीमाएं और डाइमेंशनलिटी (वैकल्पिक) शामिल होती हैं.
इस्तेमाल रिटर्न ee.PixelType(precision, minValue , maxValue , dimensions )PixelType
आर्ग्यूमेंट टाइप विवरण precisionऑब्जेक्ट पिक्सल की सटीक जानकारी, जो 'int', 'float' या 'double' में से एक होती है. minValueसंख्या, डिफ़ॉल्ट: null इस तरह के पिक्सल की कम से कम वैल्यू. अगर प्रेसिज़न 'फ़्लोट' या 'डबल' है, तो यह शून्य हो सकता है. इसका मतलब है कि यह ऋणात्मक अनंत है. maxValueसंख्या, डिफ़ॉल्ट: null इस टाइप के पिक्सल की ज़्यादा से ज़्यादा वैल्यू. अगर प्रेसिज़न 'फ़्लोट' या 'डबल' है, तो यह शून्य हो सकता है. इसका मतलब है कि यह पॉज़िटिव इनफ़िनिटी है. dimensionsपूर्णांक, डिफ़ॉल्ट: 0 डाइमेंशन की वह संख्या जिसमें इस टाइप के पिक्सल अलग-अलग हो सकते हैं; 0 एक स्केलर है, 1 एक वेक्टर है, 2 एक मैट्रिक्स है वगैरह.
उदाहरण
कोड एडिटर (JavaScript)
print ( ee . PixelType ( 'int' , 0 , 1 )); // int ∈ [0, 1]
print ( ee . PixelType ( 'int' , - 20 , - 10 )); // int ∈ [-20, -10]
print ( ee . PixelType ( 'float' )); // float
print ( ee . PixelType ( 'double' )); // double
print ( ee . PixelType ( 'double' , null )); // double
print ( ee . PixelType ( 'double' , null , null )); // double
print ( ee . PixelType ( 'double' , null , null , 0 )); // double
print ( ee . PixelType ( 'double' , null , null , 1 )); // double, 1 dimensions
print ( ee . PixelType ( 'double' , null , null , 2 )); // double, 2 dimensions
print ( ee . PixelType ( 'double' , null , null , 3 )); // double, 3 dimensions
print ( ee . PixelType ( 'double' , null , null , 10 )); // double, 10 dimensions
print ( ee . PixelType ( 'double' , null , null , 1e8 )); // double, 100000000 dimensions
print ( ee . PixelType ( 'double' , 1 , 2 , 0 )); // double ∈ [1, 2]
print ( ee . PixelType ( 'double' , 1 , 3 , 2 )); // double ∈ [1, 3], 2 dimensions
print ( ee . PixelType ( 'double' , - 4 , - 3 , 0 )); // double ∈ [-4, -3]
print ( ee . PixelType ( 'double' , null , 2.3 , 0 )); // double
print ( ee . PixelType ( 'double' , 3.4 , null , 0 )); // double
Python सेटअप करना
Python API और इंटरैक्टिव डेवलपमेंट के लिए geemap का इस्तेमाल करने के बारे में जानकारी पाने के लिए,
Python एनवायरमेंट पेज देखें.
import ee
import geemap.core as geemap
Colab (Python)
display ( ee . PixelType ( 'int' , 0 , 1 )) # int ∈ [0, 1]
display ( ee . PixelType ( 'int' , - 20 , - 10 )) # int ∈ [-20, -10]
display ( ee . PixelType ( 'float' )) # float
display ( ee . PixelType ( 'double' )) # double
display ( ee . PixelType ( 'double' , None )) # double
display ( ee . PixelType ( 'double' , None , None )) # double
display ( ee . PixelType ( 'double' , None , None , 0 )) # double
display ( ee . PixelType ( 'double' , None , None , 1 )) # double, 1 dimensions
display ( ee . PixelType ( 'double' , None , None , 2 )) # double, 2 dimensions
display ( ee . PixelType ( 'double' , None , None , 3 )) # double, 3 dimensions
display ( ee . PixelType ( 'double' , None , None , 10 )) # double, 10 dimensions
# double, 100000000 dimensions
display ( ee . PixelType ( 'double' , None , None , 1e8 ))
display ( ee . PixelType ( 'double' , 1 , 2 , 0 )) # double ∈ [1, 2]
# double ∈ [1, 3], 2 dimensions
display ( ee . PixelType ( 'double' , 1 , 3 , 2 ))
display ( ee . PixelType ( 'double' , - 4 , - 3 , 0 )) # double ∈ [-4, -3]
display ( ee . PixelType ( 'double' , None , 2.3 , 0 )) # double
display ( ee . PixelType ( 'double' , 3.4 , None , 0 )) # double
सुझाव भेजें
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-10-30 (UTC) को अपडेट किया गया.
क्या आपको हमें और कुछ बताना है?
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-10-30 (UTC) को अपडेट किया गया."],[],[]]