gee
冰柚子
这个作者很懒,什么都没留下…
展开
-
【google earth engine】11.配置gee 本地环境
为了调用matlab的函数,从云端转本地。环境配置稍有不同,google colab的配置过程见此链接。1.打开anaconda prompt,进入虚拟环境activate python36安装gee的包conda install -c conda-forge earthengine-api检查api是否成功,进入 pythonimport ee授权gee,在终端输入????,跳出网页,复制验证码earthengine authenticate...原创 2020-10-02 16:06:05 · 1030 阅读 · 0 评论 -
【google earth engine】7. 哨兵二号大气校正
1. 参考链接使用gee进行哨兵二号大气校正2. 环境配置参考gee python api 使用3. 代码!pip install Py6S原创 2020-09-18 15:52:26 · 5099 阅读 · 25 评论 -
【google earth engine】6. google colab中使用Py6S
1.参考链接google colab中设置环境变量Py6S官方文档colab中的一些注意事项2.报错在notebook中 pip install Py6S之后,可以导入,但是运行时候报错 找不到可执行文件。查看文档后发现:3.安装6S查看gfortran是否安装下载并解压源码!wget http://rtwilson.com/downloads/6SV-1.1.tar!tar xvf 6SV-1.1.tar!cd 6SV1.1手动编辑 6SV1.1/Makefile原创 2020-09-17 15:30:18 · 996 阅读 · 5 评论 -
【google earth engine】5.在google colab中导入.py文件
1.参考链接在google colab中导入.py文件2.方法一from google.colab import filessrc = list(files.upload().values())[0]open('atmospheric.py','wb').write(src)from atmospheric import Atmospheric3.方法二手动上传,将.py文件与.ipynb文件放在同目录下...原创 2020-09-16 16:41:22 · 2422 阅读 · 1 评论 -
【google earth engine】4. gee python api 使用
1.参考链接云端编程工具colab简单介绍云端配置GEE的python开发环境2.打开登录谷歌云盘新建 → 更多 → 关联更多应用 → Colaboratory → install新建 → 更多 → Colaboratory ,就进入notebook界面3.配置python环境1.!pip install earthengine-api2. !earthengine authenticate --quiet进入网址登录3. 复制验证码,在notebook中验证,复制提示代码,替原创 2020-09-03 10:03:33 · 1033 阅读 · 0 评论 -
【google earth engine】3. 影像添加属性
1. 参考链接在线代码编辑器user guides2.函数2.1 set():参数:property,value时,设置一个属性参数:{p1:v1,p2:v2}时,设置多个属性2.1 setMulti():参数:{p1:v1,p2:v2}时,设置多个属性3.代码在这里插入代码片...原创 2020-08-28 15:37:59 · 1707 阅读 · 0 评论 -
【google earth engine】2. 导出影像到谷歌云盘
1. 参考链接在线代码编辑器user guides谷歌云盘2. 谷歌云盘登录登录链接新建一个文件夹 用于 导出影像的存储原创 2020-08-28 12:10:07 · 899 阅读 · 6 评论 -
【google earth engine】1.导出影像到asset
1.2. 总体描述3. 导出影像到asset影像的ID,即导出影像的文件名。点击运行后,tasks处闪烁,再次点击run,会弹出对话框,此时关于导出的设置,仍然是可以修改的。如果影像很大的话,会报错,Error: Export too large: specified 498209495 pixels (max: 100000000). Specify higher maxPixels value if you intend to export a large area.需要将maxpix原创 2020-08-27 12:16:28 · 3407 阅读 · 1 评论