Google Earth Engine
Google Earth Engine
疆~
这个作者很懒,什么都没留下…
展开
-
Google Earth Engine(gee)中发布APP后加载不出页面
在发布APP后,发现等了很久都访问不出来页面,这个可能是因为我们没有将本地的文件公开出去。在【Assets】中按照以下步骤将数据公开即可原创 2021-01-04 15:46:22 · 1341 阅读 · 0 评论 -
Google Earth Engine(gee)中导出数据
Export.table.toDrive导出成功,然后打开谷歌云盘:https://drive.google.com/drive/my-drive,查看导出的文件var fc_chengdu = /* color: #d63000 */ee.FeatureCollection( [ee.Feature( ee.Geometry.Point([104.01594003115709, 30.59831333238435]), ...原创 2020-12-16 14:10:47 · 6340 阅读 · 2 评论 -
Google Earth Engine(gee)中生成图例
效果图实现代码var legend = ui.Panel({ style: { position: 'bottom-left', padding: '8px 15px' }});var legendTitle = ui.Label({ value: 'NDVI', style: { fontWeight: 'bold', fontSize: '18px', margin: '0 0 9px 0', padding: '0'.原创 2020-12-07 11:21:30 · 2424 阅读 · 2 评论 -
Google Earth Engine(gee)中的reduce、Reducer
Reducer中的min、median(中位数)、mean(平均值)、max以下这个例子是针对Image的var img = ee.Image("LANDSAT/LC08/C01/T1/LC08_127040_20190407");Map.centerObject(img);Map.addLayer(img,{},"img")Map.addLayer(img.reduce(ee.Reducer.min()), {max: 5000}, 'Reducer.min()');Map.a.原创 2020-11-29 14:42:05 · 4139 阅读 · 0 评论 -
Google Earth Engine(gee)中的FeatureCollection
基本结构生成随机点:FeatureCollection.randomPoints()原创 2020-11-26 23:49:02 · 8521 阅读 · 3 评论 -
Google Earth Engine(gee)中的Algorithms
qualityMosaic()该命令的功能是“选出最大值像素”。具体来说,本例的Image Collection已经通过.map命令给其中的每个图像都增加了NDVI(波段名为nd)数据,当利用qualityMosaic命令并且选择nd波段为参数时,其结果就是将Image Collection的NDVI最大的像素挑选出来并组合成一副图像。var imgs = ee.ImageCollection("LANDSAT/LC08/C01/T1_TOA") .filterB原创 2020-11-25 14:54:21 · 1524 阅读 · 0 评论 -
Google Earth Engine(gee)中的Filter
Filter.dayOfYearvar l8 = ee.ImageCollection("LANDSAT/LC08/C01/T1_TOA") .filterDate('2018-01-01','2018-12-31') .filterBounds(ee.Geometry.Point(106.3069, 29.7818))print("l8",l8)print("l8_dayOfYear",l8.filter(ee.Filte.原创 2020-12-03 15:04:22 · 1090 阅读 · 0 评论 -
Google Earth Engine(gee)中的Feature
ee.Feature()var geometry_tianfu= ee.Geometry.Polygon([[[104.06431420192233, 30.65820626544307], [104.06455023631564, 30.656581911340815], [104.06714661464206, 30.6565.原创 2020-11-24 23:43:10 · 1045 阅读 · 0 评论 -
Google Earth Engine(gee)中的List
目录ee.ListList.repeat()List.sequence()List中的get、setList中的replace、replaceAllList中的add、insert、reverse、swapList中的sortList中的remove、removeAllList中的equals、contains、containsAllList.map()List中的iterateList中的size、length类似于js中的数组ee.Lis...原创 2020-11-24 17:59:01 · 4462 阅读 · 0 评论 -
Google Earth Engine(gee)中的Dictionary
用法类似js中的对象,key/valueget()、keys()var user=ee.Dictionary({ username:"lijiang", password:123, more:[1,2,3], pi:Math.PI, age:20+2})print("user:",user)print("user.username",user.get("username"))print("user.get('pi')",user.get("pi"))print原创 2020-11-24 16:51:03 · 1019 阅读 · 0 评论 -
Google Earth Engine(gee)中的String和Number
String 和 Number 是GEE中最基本的数据类型一、ee.String()print(ee.String('hello'))print(ee.String('hello').cat(ee.String(',world')))//拼接 print(ee.String('hello').replace('h','H'))//替换 print(ee.String('hello').match('he'))//匹配print(ee.String('h_e_l_l_0').spli..原创 2020-11-24 12:46:48 · 1755 阅读 · 0 评论 -
Google Earth Engine(gee)中的Date和DateRange
基本用法print(ee.Date('1970-01-01'))print(ee.Date(24*60*60*1000))print(ee.Date.fromYMD(2015,2,12))//,表示2月需用2,不能用02print(ee.Date.parse( 'yyyy-MM-dd-HH-mm-ss','2015-1-12-15-4-12' ))时间单位增加var Date_0 = ee.Date( '1970-01-01' );var Date_1 = Date_0.ad原创 2020-11-24 15:20:56 · 2810 阅读 · 1 评论 -
Google Earth Engine(gee)中的Geometry
目录点:ee.Geometry.Point()多点:ee.Geometry.MultiPoint()线:ee.Geometry.LineString()多线:ee.Geometry.MultiLineString()单闭合线:ee.Geometry.LinearRing()多闭合线:ee.Geometry.MultiLineString()ee.Geometry()面:ee.Geometry.Polygon()多面:ee.GeometryMultiPolygon()矩原创 2020-11-24 01:12:51 · 6635 阅读 · 1 评论 -
Google Earth Engine(gee)中的Image
土地利用数据集:ESA/GLOBCOVER_L4_200901_200912_V2_3里面有这两个波段landcover和qaImageCollection获取影像集中的影像数量:size()map()函数中不能print获取Image中的属性值:Image.get()Image.clip()注意:clip是作用在Image上的,不能作用在ImageCollection上var sichuan = ee.FeatureCollection("u..原创 2020-11-24 16:20:12 · 4445 阅读 · 7 评论 -
Google Earth Engine中的LandSat卫星数据
ee.ImageCollection.qualityMosaic()mosaic获取的是最后一个有值的像素,然后生成一张影像; qualityMosaic提取的是像素点的最大值,类似对集合使用max函数。有去云的效果; var l8 = ee.ImageCollection("LANDSAT/LC08/C01/T1_TOA");var l8_select=l8.filterBounds(ee.Geometry.Point(106.5,29.6)) ...原创 2020-12-23 09:32:16 · 2245 阅读 · 3 评论 -
Google Earth Engine(gee)中的ImageCollection
常用 的影像集landsat8:LANDSAT/LC08/C01/T1_TOAlimit()、first()gee中在控制台对影像集最多存在5000条记录limit函数用来限制显示记录的条数filterBounds()、filterDate()、filterMetadata()var sichuan = ee.FeatureCollection("users/lcljv1066965/test/sichuan"), l8 = ee.ImageCollectio..原创 2020-11-22 23:52:49 · 15212 阅读 · 1 评论