Google Earth Engine(GEE)——加载点/线/面(只需要点坐标)

var line = /* color: #d63000 */ee.Geometry.LineString(  
        [[-103.28593749999999, 38.46623315614578],  
         [-94.98027343749999, 40.534424706292405]]),  
    multiLine = /* color: #28db3e */ee.Geometry.MultiLineString(  
        [[[-101.70316271563797, 37.737101081855215],  
          [-96.46658167152503, 38.017322136064934]],  
         [[-105.74687499999999, 35.73286699047012],  
          [-100.34160156249999, 36.584391288158706]]]),  
    point = /* color: #0b4a8b */ee.Geometry.Point([-89.09160156249999, 39.7956206925268]),  
    multiPoint = /* color: #ffc82d */ee.Geometry.MultiPoint(  
        [[-92.65117187499999, 37.42662495543974],  
         [-93.79374999999999, 37.28690130733523]]),  
    polygon = /* color: #00ffff */ee.Geometry.Polygon(  
        [[[-96.86992187499999, 34.438354866968545],  
          [-95.55156249999999, 36.90132207718713],  
          [-97.74882812499999, 35.44697585969926]]])
上一篇:MFC中CString 与 std::string 相互转化


下一篇:LeetCode14 最长公共前缀