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 साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (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. |"]]