当前位置:网站首页>Google Earth engine -- a small bug in gee. Images of transcontinental boundaries cannot be obtained
Google Earth engine -- a small bug in gee. Images of transcontinental boundaries cannot be obtained
2022-07-23 13:57:00 【This star is bright】
I have two boundaries , The black one is the original boundary , The red one is black .bounds() . Why can I export black data , If the data is in 180° On both sides of , But the red data will be lost 180° The data on the right ?
Same question :
Does anyone know why the border of North America , Longitude yes 347°, How to make it to -13°? And with this boundary, export data , I only got the data of the eastern hemisphere ( Only 172-180° E), Other areas are empty .

Code :
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'}
// });
You can try it yourself
边栏推荐
猜你喜欢
随机推荐
Unity about local loading pictures involves webrequest or byte
数据库系统原理与应用教程(038)—— MySQL 的索引(四):使用 EXPLAIN 命令分析索引
Detailed explanation of decision tree
内存取证之NSSCTF-OtterCTF 2018(复现赛)
Matlab: convert PNG pictures into txt files
Common mouse events and keyboard events
[Muduo] epollplayer event distributor
数据库系统原理与应用教程(045)—— MySQL 查询(七):聚合函数
面试官:有了解过ReentrantLock的底层实现吗?说说看
CenterNet目标检测模型及CenterFusion融合目标检测模型
MGRE环境下的OSPF实验:
《乔布斯传》英文原著重点词汇笔记(十五)【 chapter fourteen】
图像处理7:测试文件
Unity关于本地加载图片涉及webrequest或者byte
去除标题栏
微服务重点
常用的鼠標事件和鍵盤事件
京东云分布式链路追踪在金融场景的最佳实践
数据库系统原理与应用教程(040)—— MySQL 查询(二):设置要查询的列名或表达式
十大券商开户风险性大吗,安全吗?








