ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Feature.withinDistance
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
যদি দুটি বৈশিষ্ট্যের জ্যামিতি একটি নির্দিষ্ট দূরত্বের মধ্যে থাকে তবেই সত্য দেখায়৷
ব্যবহার | রিটার্নস | Feature. withinDistance (right, distance, maxError , proj ) | বুলিয়ান |
যুক্তি | টাইপ | বিস্তারিত | এই: left | উপাদান | অপারেশনের বাম অপারেন্ড হিসাবে ব্যবহৃত জ্যামিতি ধারণকারী বৈশিষ্ট্য। |
right | উপাদান | অপারেশনের সঠিক অপারেন্ড হিসাবে ব্যবহৃত জ্যামিতি ধারণকারী বৈশিষ্ট্য। |
distance | ভাসা | দূরত্ব থ্রেশহোল্ড। যদি একটি অভিক্ষেপ নির্দিষ্ট করা হয়, দূরত্বটি সেই অভিক্ষিপ্ত স্থানাঙ্ক সিস্টেমের ইউনিটে, অন্যথায় এটি মিটারে। |
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\u003e\u003ccode\u003ewithinDistance\u003c/code\u003e determines if two geographic features are within a specified distance of each other, returning true if they are and false otherwise.\u003c/p\u003e\n"],["\u003cp\u003eThe distance threshold can be defined in meters or in the units of a given projected coordinate system.\u003c/p\u003e\n"],["\u003cp\u003eThis function considers the geometries of the features and can handle reprojection with a specified error margin if necessary.\u003c/p\u003e\n"]]],["The core function determines if two feature geometries are within a specified distance. It takes two features (`left`, `right`) and a `distance` (in meters or specified projection units) as input, returning a Boolean. Optional arguments include `maxError` for reprojection tolerance and `proj` to define the projection. The operation checks if `left` is within the given `distance` of `right`, considering the provided projection or defaulting to a spherical coordinate system.\n"],null,["# ee.Feature.withinDistance\n\nReturns true if and only if the geometries of two features are within a specified distance.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------------------------------|---------|\n| Feature.withinDistance`(right, distance, `*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| `distance` | Float | The distance threshold. If a projection is specified, the distance is in units of that projected coordinate system, otherwise it is in meters. |\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. |"]]