ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Algorithms.GeometryConstructors.BBox
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি আয়তক্ষেত্র তৈরি করে যার প্রান্তগুলি অক্ষাংশ এবং দ্রাঘিমাংশের রেখা।
ফলাফল হল একটি প্ল্যানার WGS84 আয়তক্ষেত্র।
যদি (পূর্ব - পশ্চিম) ≥ 360 তাহলে দ্রাঘিমাংশের পরিসীমা -180 থেকে +180 পর্যন্ত স্বাভাবিক করা হবে; অন্যথায় এগুলিকে একটি বৃত্তের মনোনীত বিন্দু হিসাবে গণ্য করা হবে (যেমন, পূর্ব সংখ্যাগতভাবে পশ্চিমের চেয়ে কম হতে পারে)।
ব্যবহার | রিটার্নস | ee.Algorithms.GeometryConstructors.BBox(west, south, east, north) | জ্যামিতি |
যুক্তি | টাইপ | বিস্তারিত | west | ভাসা | সবচেয়ে পশ্চিমে ঘেরা দ্রাঘিমাংশ। -180 থেকে 180 রেঞ্জের মধ্যে শুয়ে সামঞ্জস্য করা হবে। |
south | ভাসা | সবচেয়ে দক্ষিণে ঘেরা অক্ষাংশ। -90 (দক্ষিণ মেরু) এর কম হলে -90 হিসাবে ধরা হবে। |
east | ভাসা | সবচেয়ে পূর্বে ঘেরা দ্রাঘিমাংশ। |
north | ভাসা | সবচেয়ে উত্তরে ঘেরা অক্ষাংশ। +90 (উত্তর মেরু) এর বেশি হলে +90 হিসাবে বিবেচিত হবে। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট 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\u003eCreates a rectangular geometry using latitude and longitude coordinates, representing a planar area in WGS84.\u003c/p\u003e\n"],["\u003cp\u003eThe longitude range is normalized to -180 to +180 if it spans 360 degrees or more; otherwise, it's treated as a circular range.\u003c/p\u003e\n"],["\u003cp\u003eInput coordinates for the bounding box include west, south, east, and north, with adjustments made for values exceeding latitude limits.\u003c/p\u003e\n"]]],["This describes creating a WGS84 rectangle using latitude and longitude. The function `BBox` takes four float arguments: `west`, `south`, `east`, and `north`, representing the rectangle's boundaries. Longitude values are normalized to -180 to +180 if the difference between `east` and `west` is 360 or more; otherwise they define points on a circle. Latitude values are clamped between -90 and +90. The function returns a Geometry object.\n"],null,["# ee.Algorithms.GeometryConstructors.BBox\n\nConstructs a rectangle whose edges are lines of latitude and longitude.\n\n\u003cbr /\u003e\n\nThe result is a planar WGS84 rectangle.\n\nIf (east - west) ≥ 360 then the longitude range will be normalized to -180 to +180; otherwise they will be treated as designating points on a circle (e.g., east may be numerically less than west).\n\n| Usage | Returns |\n|---------------------------------------------------------------------|----------|\n| `ee.Algorithms.GeometryConstructors.BBox(west, south, east, north)` | Geometry |\n\n| Argument | Type | Details |\n|----------|-------|-----------------------------------------------------------------------------------------------|\n| `west` | Float | The westernmost enclosed longitude. Will be adjusted to lie in the range -180 to 180. |\n| `south` | Float | The southernmost enclosed latitude. If less than -90 (south pole), will be treated as -90. |\n| `east` | Float | The easternmost enclosed longitude. |\n| `north` | Float | The northernmost enclosed latitude. If greater than +90 (north pole), will be treated as +90. |"]]