当前位置:网站首页>Google Earth Engine——gee中的小bug跨洲边际的影像无法获取
Google Earth Engine——gee中的小bug跨洲边际的影像无法获取
2022-07-23 07:28:00 【此星光明】
我有两个边界,黑色的一个是原始边界,红色的一个是黑色的 .bounds() 。为什么我可以导出黑色的数据,如果数据在180°的两侧,但红色的数据会丢失180°右侧的数据?
同样的问题:
有没有人知道为什么北美的边界,经度有347°,如何使它到-13°?并且有了这个边界导出数据,我只得到了东半球的数据(只有 172-180° E),其他区域是空的。

代码:
var imageCollection = ee.ImageCollection("MODIS/061/MOD13A1"),
table = ee.FeatureCollection("users/qianrswaterr/globalBoundary/World_Continents");
var continent = 'North America'
var EuropeBoundary=table.filterMetadata("CONTINENT","equals",continent);
imageCollection = imageCollection.filterDate('2018-01-01','2019-01-01')
Map.addLayer(imageCollection.first())
print(ee.Feature(EuropeBoundary.first()).bounds())
Map.addLayer(ee.Feature(EuropeBoundary.first()))
Map.addLayer(ee.Feature(EuropeBoundary.first()).bounds())
// Export.image.toAsset({
// image: imageCollection.first(),
// description:'test1',
// scale: 1000,
// region: ee.Feature(EuropeBoundary.first()).bounds(),
// crs:"EPSG:4326",
// assetId:'test1',
// maxPixels: 1e13,
// pyramidingPolicy: {'.default': 'sample'}
// });
大家可以自行去尝试
边栏推荐
- FPGA:ov7725摄像头通过VGA/HDMI显示RGB565格式的图像
- 内存取证之NSSCTF-OtterCTF 2018(复现赛)
- 【Ardunio】2种方法控制舵机
- 关于#redis#的问题:Redis设置数据持久化之后还是会有丢失数据的风险
- LeetCode_ 2341_ How many pairs can an array form
- ES6 - weekly examination questions
- KingbaseESV8R6不同隔离级下xmin的区别
- ModuleNotFoundError: No module named ‘setuptools_ rust‘
- How to ensure the reliable transmission of messages? What if the message is lost
- Parameters of high-performance JVM
猜你喜欢
随机推荐
Establish stm32f103c8t6 project template and STM32 st-link utility burn hex file
LeetCode_ 46_ Full Permutation
C#做一个简单浏览器
[play with FPGA in simple terms to learn 10 ----- simple testbench design]
概率沉思錄:2.The quantitative rules
ES6 - weekly examination questions
单例模式实现及防止反射与序列化
Okaleido tiger NFT即将登录Binance NFT平台,你期待吗?
图像处理4:腐蚀
IP地址分类及范围
LeetCode_ 52_ Queen n II
Talking about the CPU type of anroid device and the placement directory of so files
数据库系统原理与应用教程(045)—— MySQL 查询(七):聚合函数
C#:in、out、ref關鍵字
Unity制作简单拦截近防炮——如何预测打击目标
Ros2 self study notes: gazebo physical simulation platform
MySQL面试题
SparkSQL设计及入门,220722,
Kotlin - suspend function
挖财开户风险性大吗,安全吗?









