ee.Algorithms.GeometryConstructors.MultiLineString
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
यह फ़ंक्शन, दिए गए कोऑर्डिनेट से MultiLineString बनाता है.
इस्तेमाल | रिटर्न |
---|
ee.Algorithms.GeometryConstructors.MultiLineString(coordinates, crs, geodesic, maxError) | ज्यामिति |
आर्ग्यूमेंट | टाइप | विवरण |
---|
coordinates | सूची | LineString की सूची या किसी एक LineString को रैप करने के लिए, x,y क्रम में पॉइंट या संख्याओं के जोड़े की सूची. |
crs | प्रोजेक्शन, डिफ़ॉल्ट: null | निर्देशांकों का कोऑर्डिनेट रेफ़रंस सिस्टम. डिफ़ॉल्ट रूप से, इनपुट का प्रोजेक्शन होता है. इसमें संख्याओं को EPSG:4326 माना जाता है. |
geodesic | बूलियन, डिफ़ॉल्ट: null | अगर यह वैल्यू false है, तो प्रोजेक्शन में किनारे सीधे होते हैं. अगर सही है, तो पृथ्वी की सतह पर सबसे छोटे रास्ते को फ़ॉलो करने के लिए किनारों को घुमाया जाता है. डिफ़ॉल्ट रूप से, यह इनपुट की जियोडेसिक स्थिति होती है. अगर इनपुट संख्याएं हैं, तो यह true होती है. |
maxError | ErrorMargin, डिफ़ॉल्ट: null | इनपुट ज्यामिति को, नतीजे के लिए अनुरोध की गई प्रोजेक्शन या जियोडेसिक स्थिति में फिर से प्रोजेक्ट करने पर ज़्यादा से ज़्यादा गड़बड़ी. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को 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 MultiLineString geometry from a list of LineStrings or Points.\u003c/p\u003e\n"],["\u003cp\u003eAccepts \u003ccode\u003ecoordinates\u003c/code\u003e, \u003ccode\u003ecrs\u003c/code\u003e, \u003ccode\u003egeodesic\u003c/code\u003e, and \u003ccode\u003emaxError\u003c/code\u003e as inputs to define the MultiLineString.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ecrs\u003c/code\u003e parameter specifies the coordinate reference system, defaulting to EPSG:4326 if numbers are provided.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003egeodesic\u003c/code\u003e parameter determines if edges are straight or follow the Earth's curvature, with a default based on input type.\u003c/p\u003e\n"]]],["The function `MultiLineString` creates a geometry object from a list of coordinates. It takes `coordinates` defining the LineStrings, and optionally, the `crs` (coordinate reference system), `geodesic` (true for curved edges, false for straight), and `maxError` (for reprojection errors). The function returns a `Geometry` object representing the constructed MultiLineString. `coordinates` can be a list of LineStrings, points or a list of number pairs in x,y order.\n"],null,["# ee.Algorithms.GeometryConstructors.MultiLineString\n\nConstructs a MultiLineString from the given coordinates.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|----------------------------------------------------------------------------------------------------------|----------|\n| `ee.Algorithms.GeometryConstructors.MultiLineString(coordinates, `*crs* `, `*geodesic* `, `*maxError*`)` | Geometry |\n\n| Argument | Type | Details |\n|---------------|----------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `coordinates` | List | The list of LineStrings, or to wrap a single LineString, the list of Points or pairs of Numbers in x,y order. |\n| `crs` | Projection, default: null | The coordinate reference system of the coordinates. The default is the projection of the inputs, where Numbers are assumed to be EPSG:4326. |\n| `geodesic` | Boolean, default: null | If false, edges are straight in the projection. If true, edges are curved to follow the shortest path on the surface of the Earth. The default is the geodesic state of the inputs, or true if the inputs are numbers. |\n| `maxError` | ErrorMargin, default: null | Max error when input geometry must be reprojected to an explicitly requested result projection or geodesic state. |"]]