ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Feature.contains
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি বৈশিষ্ট্যের জ্যামিতি অন্য বৈশিষ্ট্যের জ্যামিতি ধারণ করলে এবং কেবলমাত্র সত্য দেখায়৷
ব্যবহার | রিটার্নস | Feature. contains (right, maxError , proj ) | বুলিয়ান |
যুক্তি | টাইপ | বিস্তারিত | এই: left | উপাদান | অপারেশনের বাম অপারেন্ড হিসাবে ব্যবহৃত জ্যামিতি ধারণকারী বৈশিষ্ট্য। |
right | উপাদান | অপারেশনের সঠিক অপারেন্ড হিসাবে ব্যবহৃত জ্যামিতি ধারণকারী বৈশিষ্ট্য। |
maxError | ErrorMargin, ডিফল্ট: null | যেকোনো প্রয়োজনীয় রিপ্রজেকশন করার সময় সর্বোচ্চ পরিমাণ ত্রুটি সহ্য করা হয়। |
proj | অভিক্ষেপ, ডিফল্ট: নাল | যে অভিক্ষেপে অপারেশন করতে হবে। যদি নির্দিষ্ট করা না থাকে, অপারেশনটি একটি গোলাকার স্থানাঙ্ক ব্যবস্থায় সঞ্চালিত হবে, এবং রৈখিক দূরত্ব গোলকের মিটারে হবে৷ |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট 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\u003eThis function checks if one feature's geometry completely encloses another feature's geometry.\u003c/p\u003e\n"],["\u003cp\u003eIt returns true only if the 'left' feature's geometry fully contains the 'right' feature's geometry, otherwise it returns false.\u003c/p\u003e\n"],["\u003cp\u003eThe comparison can be customized by specifying a maximum error tolerance (\u003ccode\u003emaxError\u003c/code\u003e) and a projection (\u003ccode\u003eproj\u003c/code\u003e) for the operation.\u003c/p\u003e\n"]]],["The `Feature.contains()` method checks if one feature's geometry encompasses another's. It takes a `right` feature as input, and optionally `maxError` for reprojection tolerance, and `proj` for the desired projection. The method returns a Boolean value: `true` if the `left` feature's geometry contains the `right` feature's geometry, `false` otherwise. If no projection is specified, calculations are performed spherically, with linear distances measured in meters.\n"],null,["# ee.Feature.contains\n\nReturns true if and only if the geometry of one feature contains the geometry of another.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|----------------------------------------------------|---------|\n| Feature.contains`(right, `*maxError* `, `*proj*`)` | Boolean |\n\n| Argument | Type | Details |\n|--------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `left` | Element | The feature containing the geometry used as the left operand of the operation. |\n| `right` | Element | The feature containing the geometry used as the right operand of the operation. |\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. |"]]