Python 中图像的波段名称列表
List of band names of image in Python
Python 中 Java 的以下语法等效于什么?
an_image.bandNames()
哦,好吧,最小示例搜索者的最小示例:
DDD = [
[-119.6407034633335, 46.24481372235483],
[-119.6408917723115, 46.24488458019852],
[-119.6410025340358, 46.24492625773868],
[-119.6409025226398, 46.24509979439763],
[-119.6403588110883, 46.24607095679298],
[-119.6378330575554, 46.24505154496256],
[-119.6378477085695, 46.24503421710987],
[-119.6375762996203, 46.24492301512146],
[-119.6378468749315, 46.24462749295479],
[-119.6386649272333, 46.24406085261441],
[-119.6396165642001, 46.24437708363979],
[-119.6407034633335, 46.24481372235483]
]
a_polygon = ee.Geometry.Polygon(DDD)
start_date = '2018-03-1'
end_date = '2018-10-30'
a_collection = ee.ImageCollection('COPERNICUS/S2').filter( # searches all sentinel 2 imagery pixels...
ee.Filter.lt("CLOUDY_PIXEL_PERCENTAGE",
10)).filterDate( start_date,
end_date).filterBounds(a_polygon)
我想看看里面的乐队。我试过什么? a_collection.bandNames()
最小的例子和我尝试过的有什么不同吗?我不这么认为。
简单的问题,相当于bandNames()
?要么你知道,要么你不知道!
a_collection.getInfo()['features'][0]['bands']
甚至更好:
a_collection.first().bandNames().getInfo()
以下教程也是有用的资源。
https://colab.research.google.com/github/csaybar/EEwPython
P.S。有意使附加到超链接的地址可见。而不是像 CLICK HERE.
这样的东西
simple question, equivalent of bandNames()
?
相当于JS
ee.Image(...).bandNames()
在Python中完全一样:
ee.Image(...).bandNames()
您可以通过搜索 GitHub 上的 "image.bandNames" 以及 Python.
的语言过滤器来查看大量此类示例
Python 中 Java 的以下语法等效于什么? an_image.bandNames()
哦,好吧,最小示例搜索者的最小示例:
DDD = [
[-119.6407034633335, 46.24481372235483],
[-119.6408917723115, 46.24488458019852],
[-119.6410025340358, 46.24492625773868],
[-119.6409025226398, 46.24509979439763],
[-119.6403588110883, 46.24607095679298],
[-119.6378330575554, 46.24505154496256],
[-119.6378477085695, 46.24503421710987],
[-119.6375762996203, 46.24492301512146],
[-119.6378468749315, 46.24462749295479],
[-119.6386649272333, 46.24406085261441],
[-119.6396165642001, 46.24437708363979],
[-119.6407034633335, 46.24481372235483]
]
a_polygon = ee.Geometry.Polygon(DDD)
start_date = '2018-03-1'
end_date = '2018-10-30'
a_collection = ee.ImageCollection('COPERNICUS/S2').filter( # searches all sentinel 2 imagery pixels...
ee.Filter.lt("CLOUDY_PIXEL_PERCENTAGE",
10)).filterDate( start_date,
end_date).filterBounds(a_polygon)
我想看看里面的乐队。我试过什么? a_collection.bandNames()
最小的例子和我尝试过的有什么不同吗?我不这么认为。
简单的问题,相当于bandNames()
?要么你知道,要么你不知道!
a_collection.getInfo()['features'][0]['bands']
甚至更好:
a_collection.first().bandNames().getInfo()
以下教程也是有用的资源。
https://colab.research.google.com/github/csaybar/EEwPython
P.S。有意使附加到超链接的地址可见。而不是像 CLICK HERE.
这样的东西simple question, equivalent of
bandNames()
?
相当于JS
ee.Image(...).bandNames()
在Python中完全一样:
ee.Image(...).bandNames()
您可以通过搜索 GitHub 上的 "image.bandNames" 以及 Python.
的语言过滤器来查看大量此类示例