当前位置:网站首页>Gee data set: export the distribution and installed capacity of hydropower stations in the country to CSV table
Gee data set: export the distribution and installed capacity of hydropower stations in the country to CSV table
2022-07-02 05:11:00 【Gee water ecological space】
Catalog
Preface
GEE in , There is a database of world power plants , We can export the data we need as needed , For example, the data table of the distribution and installed capacity of hydropower stations in the country can be derived .
One 、 World power plant data set and its table structure

The above table is automatically translated by machine , hold string Translated into string , Ha
Two 、python Code
The code is as follows :
# Load data , Screening
table = ee.FeatureCollection("WRI/GPPD/power_plants") \
.filter(ee.Filter.eq('country', 'CHN')) \
.filter(ee.Filter.eq('fuel1', 'Hydro'))
# Export concerned data
downloadURL = table.getDownloadURL(filetype='csv', selectors=['country', 'name', 'capacitymw', 'latitude', 'longitude','fuel1'], filename='china_hydro')
print(downloadURL)
Some of the results are as follows :
3、 ... and 、 Summary
- Use getDownloadURL() You can export the concerned data table , This paper uses the global power plant database to derive the distribution and installed capacity of hydropower stations in China CSV Data sheet .
- Through a simple comparison, it is found that , The data in the world power plant data set still has large errors , For example, the number of hydropower stations in China is about 900 More than , Obviously, there is a lot of error , Just for GEE Study and have a look
Reference resources :
- https://developers.google.com/earth-engine/datasets/catalog/WRI_GPPD_power_plants#table-schema
- https://developers.google.com/earth-engine/apidocs/ee-featurecollection-getdownloadurl?hl=en
边栏推荐
- Pytest learning ----- pytest Interface Association framework encapsulation of interface automation testing
- Simple and practical accounting software, so that accounts can be checked
- Essence and physical meaning of convolution (deep and brief understanding)
- 视差特效的原理和实现方法
- CubeMx DMA笔记
- Go Chan's underlying principles
- 黑馬筆記---Set系列集合
- LeetCode 241. Design priorities for operational expressions (divide and conquer / mnemonic recursion / dynamic programming)
- 数学知识——快速幂的理解及例题
- Leetcode 18 problem [sum of four numbers] recursive solution
猜你喜欢

Video multiple effects production, fade in effect and border background are added at the same time

Acelems Expressway microgrid energy efficiency management platform and intelligent lighting solution intelligent lighting tunnel

数据库问题汇总

农业生态领域智能机器人的应用

06 decorator mode

视差特效的原理和实现方法

黑馬筆記---Set系列集合

The underlying principle of go map (storage and capacity expansion)

数学问题(数论)试除法做质数的判断、分解质因数,筛质数

Collectors. Groupingby sort
随机推荐
How to make an RPM file
关于Steam 教育的知识整理
2022阿里巴巴全球数学竞赛 第4题 虎虎生威(盲盒问题、集卡问题)解决思路
Implementation of leetcode two number addition go
Acelems Expressway microgrid energy efficiency management platform and intelligent lighting solution intelligent lighting tunnel
Here comes the chicken soup! Keep this quick guide for data analysts
Global and Chinese markets of semiconductor laser therapeutics 2022-2028: Research Report on technology, participants, trends, market size and share
Map in JS (including leetcode examples)
Pytest learning ----- pytest assertion of interface automation testing
ubuntu20.04安装mysql8
06 装饰(Decorator)模式
Pyechats 1.19 generate a web version of Baidu map
7.1 Résumé du concours de simulation
Mapping settings in elk (8) es
LeetCode 1175. 质数排列(质数判断+组合数学)
Mathematical knowledge -- understanding and examples of fast power
LeetCode 241. Design priorities for operational expressions (divide and conquer / mnemonic recursion / dynamic programming)
设置滚动条默认样式 谷歌浏览器
Simple and practical accounting software, so that accounts can be checked
Getting started with pytest ----- confitest Application of PY