当前位置:网站首页>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
边栏推荐
- Summary of MySQL key challenges (2)
- Fabric.js 精简JSON
- List of common bugs in software testing
- The underlying principle of go map (storage and capacity expansion)
- 農業生態領域智能機器人的應用
- 黑马笔记---Set系列集合
- Future trend of automated testing ----- self healing technology
- Go implements leetcode rotation array
- 解析少儿编程中的动手搭建教程
- Mysql基础---查询(1天学会mysql基础)
猜你喜欢
Gee: explore the characteristics of precipitation change in the Yellow River Basin in the past 10 years [pixel by pixel analysis]
关于Steam 教育的知识整理
Dark horse notes -- Set Series Collection
農業生態領域智能機器人的應用
Mysql基础---查询(1天学会mysql基础)
Here comes the chicken soup! Keep this quick guide for data analysts
2022 Alibaba global mathematics competition, question 4, huhushengwei (blind box problem, truck problem) solution ideas
运维工作的“本手、妙手、俗手”
Record my pytorch installation process and errors
函数栈帧的创建和销毁
随机推荐
How do I interview for a successful software testing position? If you want to get a high salary, you must see the offer
Use of typescript classes
leetcode两数相加go实现
LeetCode 241. Design priorities for operational expressions (divide and conquer / mnemonic recursion / dynamic programming)
C case of communication between server and client based on mqttnet
php/js cookie共享跨域的问题
Knowledge arrangement about steam Education
Draw a wave chart_ Digital IC
黑马笔记---Set系列集合
el-cascader回显只选中不显示的问题
Black Horse Notes - - set Series Collection
7.1模擬賽總結
Global and Chinese market of impact roll 2022-2028: Research Report on technology, participants, trends, market size and share
National all Chinese Automatic Test Software apifox
奠定少儿编程成为基础学科的原理
Go GC garbage collection notes (three color mark)
Fabric.js 背景不受视口变换影响
About PROFIBUS: communication backbone network of production plant
Fabric.js 3个api设置画布宽高
Summary of MySQL key challenges (2)