ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Geometry.MultiLineString.simplify
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি প্রদত্ত ত্রুটি মার্জিনের মধ্যে জ্যামিতিকে সরল করে। মনে রাখবেন যে এটি এই অ্যালগরিদমের ভোক্তার দ্বারা অনুরোধ করা ত্রুটি মার্জিনকে সম্মান করে না, যদি না maxError স্পষ্টভাবে শূন্য বলে উল্লেখ করা হয়।
এটি ত্রুটি মার্জিন প্রচারের জন্য ডিফল্ট আর্থ ইঞ্জিন নীতিকে ওভাররাইড করে, তাই আউটপুট থেকে অনুরোধ করা জ্যামিতি নির্ভুলতা নির্বিশেষে, এই অ্যালগরিদমের আর্গুমেন্টে নির্দিষ্ট ত্রুটি মার্জিনের সাথে ইনপুটগুলি অনুরোধ করা হবে৷ এর ফলে একটি রেন্ডার করা ভেক্টর মানচিত্রের সমস্ত জুম স্তরে সামঞ্জস্যপূর্ণ রেন্ডারিং হয়, কিন্তু নিম্ন জুম স্তরে (যেমন জুম আউট), জ্যামিতি সরলীকৃত হবে না, যা কার্যক্ষমতার ক্ষতি করতে পারে।
ব্যবহার | রিটার্নস | MultiLineString. simplify (maxError, proj ) | জ্যামিতি |
যুক্তি | টাইপ | বিস্তারিত | এই: geometry | জ্যামিতি | জ্যামিতি সরলীকরণ. |
maxError | ErrorMargin | ত্রুটির সর্বাধিক পরিমাণ যার দ্বারা ফলাফল ইনপুট থেকে পৃথক হতে পারে৷ |
proj | অভিক্ষেপ, ডিফল্ট: নাল | নির্দিষ্ট করা হলে, ফলাফল এই অভিক্ষেপে হবে। অন্যথায় এটি ইনপুট হিসাবে একই অভিক্ষেপে হবে। যদি ত্রুটি মার্জিনটি অভিক্ষিপ্ত ইউনিটে থাকে তবে মার্জিনটিকে এই অভিক্ষেপের একক হিসাবে ব্যাখ্যা করা হবে। |
উদাহরণ
কোড এডিটর (জাভাস্ক্রিপ্ট)
// Define a MultiLineString object.
var multiLineString = ee.Geometry.MultiLineString(
[[[-122.088, 37.418], [-122.086, 37.422], [-122.082, 37.418]],
[[-122.087, 37.416], [-122.083, 37.416], [-122.082, 37.419]]]);
// Apply the simplify method to the MultiLineString object.
var multiLineStringSimplify = multiLineString.simplify({'maxError': 1});
// Print the result to the console.
print('multiLineString.simplify(...) =', multiLineStringSimplify);
// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(multiLineString,
{'color': 'black'},
'Geometry [black]: multiLineString');
Map.addLayer(multiLineStringSimplify,
{'color': 'red'},
'Result [red]: multiLineString.simplify');
পাইথন সেটআপ
পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap
ব্যবহার করার জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।
import ee
import geemap.core as geemap
Colab (পাইথন)
# Define a MultiLineString object.
multilinestring = ee.Geometry.MultiLineString([
[[-122.088, 37.418], [-122.086, 37.422], [-122.082, 37.418]],
[[-122.087, 37.416], [-122.083, 37.416], [-122.082, 37.419]],
])
# Apply the simplify method to the MultiLineString object.
multilinestring_simplify = multilinestring.simplify(maxError=1)
# Print the result.
display('multilinestring.simplify(...) =', multilinestring_simplify)
# Display relevant geometries on the map.
m = geemap.Map()
m.set_center(-122.085, 37.422, 15)
m.add_layer(
multilinestring, {'color': 'black'}, 'Geometry [black]: multilinestring'
)
m.add_layer(
multilinestring_simplify,
{'color': 'red'},
'Result [red]: multilinestring.simplify',
)
m
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eSimplifies the geometry of a MultiLineString, potentially reducing the number of vertices, within a specified error margin.\u003c/p\u003e\n"],["\u003cp\u003eUses a consistent simplification error margin regardless of zoom level, potentially impacting performance at lower zoom levels.\u003c/p\u003e\n"],["\u003cp\u003eAllows specifying a projection for the simplified geometry; if omitted, the input projection is used.\u003c/p\u003e\n"],["\u003cp\u003eThe simplification error is interpreted in the units of the specified projection or the input geometry's projection if none is specified.\u003c/p\u003e\n"]]],[],null,["# ee.Geometry.MultiLineString.simplify\n\nSimplifies the geometry to within a given error margin. Note that this does not respect the error margin requested by the consumer of this algorithm, unless maxError is explicitly specified to be null.\n\n\u003cbr /\u003e\n\nThis overrides the default Earth Engine policy for propagating error margins, so regardless of the geometry accuracy requested from the output, the inputs will be requested with the error margin specified in the arguments to this algorithm. This results in consistent rendering at all zoom levels of a rendered vector map, but at lower zoom levels (i.e. zoomed out), the geometry won't be simplified, which may harm performance.\n\n| Usage | Returns |\n|------------------------------------------------|----------|\n| MultiLineString.simplify`(maxError, `*proj*`)` | Geometry |\n\n| Argument | Type | Details |\n|------------------|---------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `geometry` | Geometry | The geometry to simplify. |\n| `maxError` | ErrorMargin | The maximum amount of error by which the result may differ from the input. |\n| `proj` | Projection, default: null | If specified, the result will be in this projection. Otherwise it will be in the same projection as the input. If the error margin is in projected units, the margin will be interpreted as units of this projection. |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\n// Define a MultiLineString object.\nvar multiLineString = ee.Geometry.MultiLineString(\n [[[-122.088, 37.418], [-122.086, 37.422], [-122.082, 37.418]],\n [[-122.087, 37.416], [-122.083, 37.416], [-122.082, 37.419]]]);\n\n// Apply the simplify method to the MultiLineString object.\nvar multiLineStringSimplify = multiLineString.simplify({'maxError': 1});\n\n// Print the result to the console.\nprint('multiLineString.simplify(...) =', multiLineStringSimplify);\n\n// Display relevant geometries on the map.\nMap.setCenter(-122.085, 37.422, 15);\nMap.addLayer(multiLineString,\n {'color': 'black'},\n 'Geometry [black]: multiLineString');\nMap.addLayer(multiLineStringSimplify,\n {'color': 'red'},\n 'Result [red]: multiLineString.simplify');\n```\nPython setup\n\nSee the [Python Environment](/earth-engine/guides/python_install) page for information on the Python API and using\n`geemap` for interactive development. \n\n```python\nimport ee\nimport geemap.core as geemap\n```\n\n### Colab (Python)\n\n```python\n# Define a MultiLineString object.\nmultilinestring = ee.Geometry.MultiLineString([\n [[-122.088, 37.418], [-122.086, 37.422], [-122.082, 37.418]],\n [[-122.087, 37.416], [-122.083, 37.416], [-122.082, 37.419]],\n])\n\n# Apply the simplify method to the MultiLineString object.\nmultilinestring_simplify = multilinestring.simplify(maxError=1)\n\n# Print the result.\ndisplay('multilinestring.simplify(...) =', multilinestring_simplify)\n\n# Display relevant geometries on the map.\nm = geemap.Map()\nm.set_center(-122.085, 37.422, 15)\nm.add_layer(\n multilinestring, {'color': 'black'}, 'Geometry [black]: multilinestring'\n)\nm.add_layer(\n multilinestring_simplify,\n {'color': 'red'},\n 'Result [red]: multilinestring.simplify',\n)\nm\n```"]]