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 |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 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. |"]]