ee.Geometry.Point.dissolve

ज्यामिति का यूनियन दिखाता है. इससे सिंगल ज्योमेट्री में कोई बदलाव नहीं होता है और मल्टी ज्योमेट्री को एक साथ जोड़ दिया जाता है.

इस्तेमालरिटर्न
Point.dissolve(maxError, proj)ज्यामिति
आर्ग्यूमेंटटाइपविवरण
यह: geometryज्यामितियूनियन के लिए जियॉमेट्री.
maxErrorErrorMargin, डिफ़ॉल्ट: nullज़रूरी रीप्रोजेक्शन करते समय, ज़्यादा से ज़्यादा कितनी गड़बड़ी हो सकती है.
projप्रोजेक्शन, डिफ़ॉल्ट: nullअगर बताया गया है, तो यूनियन इस प्रोजेक्शन में की जाएगी. ऐसा न होने पर, इसे स्फ़ेरिकल कोऑर्डिनेट सिस्टम में किया जाएगा.

उदाहरण

कोड एडिटर (JavaScript)

// Define a Point object.
var point = ee.Geometry.Point(-122.082, 37.42);

// Apply the dissolve method to the Point object.
var pointDissolve = point.dissolve({'maxError': 1});

// Print the result to the console.
print('point.dissolve(...) =', pointDissolve);

// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(point,
             {'color': 'black'},
             'Geometry [black]: point');
Map.addLayer(pointDissolve,
             {'color': 'red'},
             'Result [red]: point.dissolve');

Python सेटअप करना

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

import ee
import geemap.core as geemap

Colab (Python)

# Define a Point object.
point = ee.Geometry.Point(-122.082, 37.42)

# Apply the dissolve method to the Point object.
point_dissolve = point.dissolve(maxError=1)

# Print the result.
display('point.dissolve(...) =', point_dissolve)

# Display relevant geometries on the map.
m = geemap.Map()
m.set_center(-122.085, 37.422, 15)
m.add_layer(point, {'color': 'black'}, 'Geometry [black]: point')
m.add_layer(point_dissolve, {'color': 'red'}, 'Result [red]: point.dissolve')
m