由于在知乎专栏上发表GEE的文章被警告过政治态度有问题,所以暂时更新的内容放在CSDN上,后续有可能会回到知乎上继续更新专栏内容。

关于GEE更多的文章可以参考我在知乎的专栏:https://zhuanlan.zhihu.com/c_123993183

目前的文章更新会在这里暂时更新。


刚刚看到的一则消息,Google运行了9年之久的Fusion Table将在2019年12月3日关闭相关服务,同时也就是未来Google Earth Engine(GEE)上将不会存在Fusion Table这一数据,GEE官方也不再建议用户使用Fusion Table数据。

目前在GEE上依然可以使用Fusion Table,但是GEE官方建议用户将数据转换为Assets方式上传到GEE上使用。转换导出的代码非常简单,这里需要注意的是导出到Asset需要的时间可能会比导出到Drive时间要久一些,这其中应该涉及到了数据转换的过程,所以大家需要等待一下。

这是导出目前比较流行的矢量边界数据的一个例子:

var countries = ee.FeatureCollection("ft:1tdSwUL7MVpOauSgRzqVTOwdfy17KDbw-1d9omPw");
var taiwan = countries.filter(ee.Filter.eq("Country", "Taiwan"));
Map.addLayer(taiwan, {color: "red"}, "taiwan");
Map.centerObject(taiwan, 6);//导出需要差不多7分钟。优点是方便不需要在重新上传矢量文件,缺点是速度慢
Export.table.toAsset({collection: taiwan,description: "taiwan",assetId: "taiwan"
});//导出差不多需要20秒。优点是导出速度快,缺点是需要重新向Asset上传矢量文件
Export.table.toDrive({collection: taiwan,description: "Drive-taiwan",fileNamePrefix: "taiwan",fileFormat: "SHP"
});


Google Fusion Tables关闭的相关通知地址:

https://support.google.com/fusiontables/answer/9185417

具体内容如下:

Notice: Google Fusion Tables Turndown

Last updated: December 11, 2018

Google Fusion Tables and the Fusion Tables API will be turned down December 3, 2019. Embedded Fusion Tables visualizations — maps, charts, tables and cards — will also stop working that day. Maps using the Fusion Tables Layer in the Maps JavaScript API v3.37 will start to see errors in August 2019.

Explore these Google tools

Fusion Tables was launched almost nine years ago as a research project in Google Labs, later evolving into an experimental product. For a long time, it was one of the few free tools for easily visualizing large datasets, especially on a map. Since then, several Google alternatives have been developed, providing deeper experiences in more specialized domains.

  • Google BigQuery – Fast, highly scalable, cost-effective, and fully managed cloud data warehouse for analytics, with built-in machine learning. With BigQuery GIS (beta), you can easily analyze and visualize geospatial data in BigQuery.

  • Google Cloud SQL – Fully-managed database service that makes it easy to set up, maintain, manage, and administer your relational MySQL and PostgreSQL databases in the cloud. See this example: Using MySQL and PHP with Google Maps.

  • Google Sheets – Your Fusion Tables can be imported into Google Sheets. Sheets provides excellent filtering and scripting features, and an API similar to that of Fusion Tables. In addition to its own charting/visualization functionality, Sheets may be used as a data source in visualization products like Google Data Studio.

  • Google Data Studio – Data Studio is Google’s free-to-use business intelligence tool. It lets you visualize and interactively explore data in compelling dashboards or reports, easily share and publish insights, and collaborate in real-time with colleagues. You can easily access and analyze data from 500+ sources including BigQuery and Sheets, with a GUI for producing map visualizations and charts.

  • Coming soon – Teams at Google have developed internal tools that can create powerful map visualizations. We are working to make some of these tools publicly available and will have more to share in the coming months—sign up to stay in touch.

Download your data

You can access your tables in Google Drive by filtering by “type:table”. Download data from a table by following these instructions, and then consider migrating that data to one of the tools listed above. If you have a lot of tables, we will make it easy to download all your data in one step via Google Takeout starting in March 2019.

GEE学习笔记 五十一:Fusion Table将在2019年12月3日关闭相关推荐

  1. 前端入门学习笔记五十一

    <!DOCTYPE html> <html><head><meta charset="utf-8"><title>< ...

  2. Flink学习笔记(十一)Table API 和 SQL

    文章目录 11. Table API 和 SQL 11.1 快速上手 11.1.1 需要依赖 11.1.2 示例 11.2 基本 API 11.2.1 程序架构 11.2.2 创建表环境 11.2.3 ...

  3. GEE学习笔记 五十四:QGIS展示3D的高程数据

    QGIS作为一个开源的非常好用的本地GIS工具,这里不在赘述,这里说它的一个比较有意思的内容.通过DEM数据展示3D地形. 下载DEM(高程数据) 比如从官网下载,或者从别的地方获取,这里就不在赘述. ...

  4. 【蓝桥杯Java_C组·从零开始卷】第二节、ifswitch(超级详细,适合入门强化学习,理论与实战双保险(2021年12月30日上午9点直播·视频发布B站)

    目录 if语句的三种格式 单分支 简写语法 可能出现的异常 双分支 else if 是多分支件判断·与纯if两者区别 案例一.判断一个正整数的奇偶性 案例二.考试奖励 switch语句三种用法 swi ...

  5. 英语学习总结—破刀式—2016年12月14日

    昨天,我有列出了新的英语的学习计划.如下: 第一阶段:2016年12月15日--2017年1月10日 第二阶段:2017年1月15日--2017年2月28日 第三阶段:2017年3月1日--2017年 ...

  6. OpenCV学习笔记(十一)(十二)(十三)(十四)(十五)

    OpenCV学习笔记(十一)--谈谈像素的类型和对Templates的限制使用 Templates是c++的一个很强大的特征,可以是数据结构更加安全高效.但也会增加编译时间和代码的长度,当函数被频繁调 ...

  7. Mr.J-- jQuery学习笔记(二十一)--模拟微博页面

    先看之前的节点操作方法:Mr.J-- jQuery学习笔记(二十)--节点操作方法 Mr.J-- jQuery学习笔记(五)--属性及属性节点 Mr.J-- jQuery学习笔记(十一)--事件委托  ...

  8. kvm虚拟化学习笔记(二十一)之KVM性能优化学习笔记

    本学习笔记系列都是采用CentOS6.x操作系统,KVM虚拟机的管理也是采用virsh方式,网上的很多的文章都基于ubuntu高版本内核下,KVM的一些新的特性支持更好,本文只是记录了CentOS6. ...

  9. .net core底层入门学习笔记(十一-JIT编译器)

    .net core底层入门学习笔记(十一) 本篇开始记录JIT编译器实现 文章目录 .net core底层入门学习笔记(十一) 前言 一.JIT编译器介绍 二.JIT编译流程 1.JIT编译触发 2. ...

最新文章

  1. 四川网络推广介绍搜索引擎从哪几个方面判断网站质量好坏?
  2. csdn中使用Git的一些注意问题
  3. android 使用adb远程调试
  4. pipelineDB学习笔记-2. Stream (流)
  5. 大数据处理工具Kafka、Zk、Spark
  6. 如何优雅地在 Linux 上运行 QQ、微信?
  7. DeepFake技术--DeepFake克星来了,简单两步算法造假图像无处可逃
  8. leg引擎适合什么系统的服务器,第一讲 LEG引擎服务端更新BLUE引擎
  9. Lottie动画详解
  10. qua数据统计缺失问题之终结
  11. (示例3)涂涂乐开发教程
  12. 第 2-3 课:迭代法计算定积分
  13. it系统应急响应流程图_各类突发事件应急处置流程图,速看!
  14. Sql Server 2000数据库日志日益庞大的解决方法
  15. https 双向认证开发实践
  16. 基于GPT硬盘模式重装win10操作系统
  17. java 获取路由器mac_求好人帮助,如何用java语言获取像无线路由器上的MAC地址,我会重赏...
  18. 害怕,刷人超过70%?3招应对校招笔试|大厂笔试自救指南|应届生必看
  19. oracle数据转入到sqlserver的一次记录
  20. 专题·网络流【资源集合

热门文章

  1. Kinect2.0远程控制鼠标操作
  2. mysql 查询空值列_SQL如何查询某行空值列的数量?
  3. doxygen安装(doxygen的编译依靠cmake)
  4. 使用Python在Excel中嵌入附件(txt文件,zip压缩包)对象
  5. 全国计算机二级aoa真题题库,计算机AOA试题单选判断及答案.docx
  6. Webots平台NAO机器人寻路避障实现
  7. 取消参考文献自动编号_利用Word自动维护参考文献的编号和引用
  8. 从0到1创建一个vue项目
  9. 参数提取类毕业论文文献包含哪些?
  10. 【chineseocr_lite】识别效果