ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Geometry.Point.simplify
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি প্রদত্ত ত্রুটি মার্জিনের মধ্যে জ্যামিতিকে সরল করে। মনে রাখবেন যে এটি এই অ্যালগরিদমের ভোক্তার দ্বারা অনুরোধ করা ত্রুটি মার্জিনকে সম্মান করে না, যদি না maxError স্পষ্টভাবে শূন্য বলে উল্লেখ করা হয়।
এটি ত্রুটি মার্জিন প্রচারের জন্য ডিফল্ট আর্থ ইঞ্জিন নীতিকে ওভাররাইড করে, তাই আউটপুট থেকে অনুরোধ করা জ্যামিতি নির্ভুলতা নির্বিশেষে, এই অ্যালগরিদমের আর্গুমেন্টে নির্দিষ্ট ত্রুটি মার্জিনের সাথে ইনপুটগুলি অনুরোধ করা হবে৷ এর ফলে একটি রেন্ডার করা ভেক্টর মানচিত্রের সমস্ত জুম স্তরে সামঞ্জস্যপূর্ণ রেন্ডারিং হয়, কিন্তু নিম্ন জুম স্তরে (যেমন জুম আউট), জ্যামিতি সরলীকৃত হবে না, যা কার্যক্ষমতার ক্ষতি করতে পারে।
ব্যবহার | রিটার্নস | Point. simplify (maxError, proj ) | জ্যামিতি |
যুক্তি | টাইপ | বিস্তারিত | এই: geometry | জ্যামিতি | জ্যামিতি সরলীকরণ. |
maxError | ErrorMargin | ত্রুটির সর্বাধিক পরিমাণ যার দ্বারা ফলাফল ইনপুট থেকে পৃথক হতে পারে৷ |
proj | অভিক্ষেপ, ডিফল্ট: নাল | নির্দিষ্ট করা হলে, ফলাফল এই অভিক্ষেপে হবে। অন্যথায় এটি ইনপুট হিসাবে একই অভিক্ষেপে হবে। যদি ত্রুটি মার্জিনটি অভিক্ষিপ্ত ইউনিটে থাকে তবে মার্জিনটিকে এই অভিক্ষেপের একক হিসাবে ব্যাখ্যা করা হবে। |
উদাহরণ
কোড এডিটর (জাভাস্ক্রিপ্ট)
// Define a Point object.
var point = ee.Geometry.Point(-122.082, 37.42);
// Apply the simplify method to the Point object.
var pointSimplify = point.simplify({'maxError': 1});
// Print the result to the console.
print('point.simplify(...) =', pointSimplify);
// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(point,
{'color': 'black'},
'Geometry [black]: point');
Map.addLayer(pointSimplify,
{'color': 'red'},
'Result [red]: point.simplify');
পাইথন সেটআপ
পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap
ব্যবহার করার জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।
import ee
import geemap.core as geemap
Colab (পাইথন)
# Define a Point object.
point = ee.Geometry.Point(-122.082, 37.42)
# Apply the simplify method to the Point object.
point_simplify = point.simplify(maxError=1)
# Print the result.
display('point.simplify(...) =', point_simplify)
# 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_simplify, {'color': 'red'}, 'Result [red]: point.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 geometries within a specified error margin, potentially overriding user-requested accuracy for consistent rendering.\u003c/p\u003e\n"],["\u003cp\u003eInput geometries are requested with the algorithm's specified error margin, impacting performance at lower zoom levels.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003esimplify\u003c/code\u003e method can be applied to Point geometries, accepting \u003ccode\u003emaxError\u003c/code\u003e and optional projection arguments.\u003c/p\u003e\n"],["\u003cp\u003eResulting geometry will be in the specified projection or inherit the input's projection if unspecified.\u003c/p\u003e\n"]]],[],null,["# ee.Geometry.Point.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| Point.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 Point object.\nvar point = ee.Geometry.Point(-122.082, 37.42);\n\n// Apply the simplify method to the Point object.\nvar pointSimplify = point.simplify({'maxError': 1});\n\n// Print the result to the console.\nprint('point.simplify(...) =', pointSimplify);\n\n// Display relevant geometries on the map.\nMap.setCenter(-122.085, 37.422, 15);\nMap.addLayer(point,\n {'color': 'black'},\n 'Geometry [black]: point');\nMap.addLayer(pointSimplify,\n {'color': 'red'},\n 'Result [red]: point.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 Point object.\npoint = ee.Geometry.Point(-122.082, 37.42)\n\n# Apply the simplify method to the Point object.\npoint_simplify = point.simplify(maxError=1)\n\n# Print the result.\ndisplay('point.simplify(...) =', point_simplify)\n\n# Display relevant geometries on the map.\nm = geemap.Map()\nm.set_center(-122.085, 37.422, 15)\nm.add_layer(point, {'color': 'black'}, 'Geometry [black]: point')\nm.add_layer(point_simplify, {'color': 'red'}, 'Result [red]: point.simplify')\nm\n```"]]