ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Geometry.BBox.convexHull
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
প্রদত্ত জ্যামিতির উত্তল হুল প্রদান করে। একটি একক বিন্দুর উত্তল হুল হল বিন্দু নিজেই, সমরেখার বিন্দুর উত্তল হল একটি রেখা, এবং অন্য সব কিছুর উত্তল হুল হল একটি বহুভুজ। মনে রাখবেন যে একই রেখায় সমস্ত শীর্ষবিন্দু সহ একটি ক্ষয়প্রাপ্ত বহুভুজ একটি রেখার অংশে পরিণত হবে।
ব্যবহার | রিটার্নস | BBox. convexHull ( maxError , proj ) | জ্যামিতি |
যুক্তি | টাইপ | বিস্তারিত | এই: geometry | জ্যামিতি | এই জ্যামিতির উত্তল হুল গণনা করে। |
maxError | ErrorMargin, ডিফল্ট: null | যেকোনো প্রয়োজনীয় রিপ্রজেকশন করার সময় সর্বোচ্চ পরিমাণ ত্রুটি সহ্য করা হয়। |
proj | অভিক্ষেপ, ডিফল্ট: নাল | যে অভিক্ষেপে অপারেশন করতে হবে। যদি নির্দিষ্ট করা না থাকে, অপারেশনটি একটি গোলাকার স্থানাঙ্ক ব্যবস্থায় সঞ্চালিত হবে, এবং রৈখিক দূরত্ব গোলকের মিটারে হবে৷ |
উদাহরণ
কোড এডিটর (জাভাস্ক্রিপ্ট)
// Define a BBox object.
var bBox = ee.Geometry.BBox(-122.09, 37.42, -122.08, 37.43);
// Apply the convexHull method to the BBox object.
var bBoxConvexHull = bBox.convexHull({'maxError': 1});
// Print the result to the console.
print('bBox.convexHull(...) =', bBoxConvexHull);
// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(bBox,
{'color': 'black'},
'Geometry [black]: bBox');
Map.addLayer(bBoxConvexHull,
{'color': 'red'},
'Result [red]: bBox.convexHull');
পাইথন সেটআপ
পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap
ব্যবহার করার জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।
import ee
import geemap.core as geemap
Colab (পাইথন)
# Define a BBox object.
bbox = ee.Geometry.BBox(-122.09, 37.42, -122.08, 37.43)
# Apply the convexHull method to the BBox object.
bbox_convex_hull = bbox.convexHull(maxError=1)
# Print the result.
display('bbox.convexHull(...) =', bbox_convex_hull)
# Display relevant geometries on the map.
m = geemap.Map()
m.set_center(-122.085, 37.422, 15)
m.add_layer(bbox, {'color': 'black'}, 'Geometry [black]: bbox')
m.add_layer(
bbox_convex_hull, {'color': 'red'}, 'Result [red]: bbox.convexHull'
)
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\u003eReturns the smallest convex Geometry that contains all the points in the input Geometry.\u003c/p\u003e\n"],["\u003cp\u003eAccepts optional arguments for maximum error and projection for reprojection.\u003c/p\u003e\n"],["\u003cp\u003eReturns the input Geometry itself if it is a single point or a line.\u003c/p\u003e\n"],["\u003cp\u003eA degenerate polygon with all vertices on the same line will be reduced to a line segment.\u003c/p\u003e\n"],["\u003cp\u003eUseful for finding the outer boundary of a set of points or geometries.\u003c/p\u003e\n"]]],[],null,["# ee.Geometry.BBox.convexHull\n\nReturns the convex hull of the given geometry. The convex hull of a single point is the point itself, the convex hull of collinear points is a line, and the convex hull of everything else is a polygon. Note that a degenerate polygon with all vertices on the same line will result in a line segment.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------|----------|\n| BBox.convexHull`(`*maxError* `, `*proj*`)` | Geometry |\n\n| Argument | Type | Details |\n|------------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `geometry` | Geometry | Calculates the convex hull of this geometry. |\n| `maxError` | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |\n| `proj` | Projection, default: null | The projection in which to perform the operation. If not specified, the operation will be performed in a spherical coordinate system, and linear distances will be in meters on the sphere. |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\n// Define a BBox object.\nvar bBox = ee.Geometry.BBox(-122.09, 37.42, -122.08, 37.43);\n\n// Apply the convexHull method to the BBox object.\nvar bBoxConvexHull = bBox.convexHull({'maxError': 1});\n\n// Print the result to the console.\nprint('bBox.convexHull(...) =', bBoxConvexHull);\n\n// Display relevant geometries on the map.\nMap.setCenter(-122.085, 37.422, 15);\nMap.addLayer(bBox,\n {'color': 'black'},\n 'Geometry [black]: bBox');\nMap.addLayer(bBoxConvexHull,\n {'color': 'red'},\n 'Result [red]: bBox.convexHull');\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 BBox object.\nbbox = ee.Geometry.BBox(-122.09, 37.42, -122.08, 37.43)\n\n# Apply the convexHull method to the BBox object.\nbbox_convex_hull = bbox.convexHull(maxError=1)\n\n# Print the result.\ndisplay('bbox.convexHull(...) =', bbox_convex_hull)\n\n# Display relevant geometries on the map.\nm = geemap.Map()\nm.set_center(-122.085, 37.422, 15)\nm.add_layer(bbox, {'color': 'black'}, 'Geometry [black]: bbox')\nm.add_layer(\n bbox_convex_hull, {'color': 'red'}, 'Result [red]: bbox.convexHull'\n)\nm\n```"]]