美文网首页@EZ翻译计划
EZ | Image Overview | GEE - 07

EZ | Image Overview | GEE - 07

作者: 杜若飞er | 来源:发表于2019-07-25 08:27 被阅读0次

Image\ Overview


所谓Image

就像Get Started文档中所言,GEE中的光栅数据被表示为Image对象,Image们有一个或多个波段组成,每个波段都有其名字、数据类型、范围、遮盖值以及投影法信息,每个image都有一堆元参数,作为一组特性储存下来。
为了使用image的ID加载数据,可以先从常量、列表或是其他合适的GEE类中引入image。下面展示了一些简单的操作:

// Create a constant image.
var image1 = ee.Image(1);
print(image1);

// Concatenate two images into one multi-band image.
var image2 = ee.Image(2);
var image3 = ee.Image.cat([image1, image2]);
print(image3);

// Create a multi-band image from a list of constants.
var multiband = ee.Image([1, 2, 3]);
print(multiband);

// Select and (optionally) rename bands.
var renamed = multiband.select(
    ['constant', 'constant_1', 'constant_2'], // old names
    ['band1', 'band2', 'band3']               // new names
);
print(renamed);

// Add bands to an image.
var image4 = image3.addBands(ee.Image(42));
print(image4);

相关文章

  • EZ | Image Overview | GEE - 07

    所谓Image 就像Get Started文档中所言,GEE中的光栅数据被表示为Image对象,Image们有一个...

  • EZ | Image Visualization | GEE -

    图像可视化 前面的文档中已经介绍了如何使用map.addLayer()函数对image做可视化,如果你不加任何参数...

  • EZ | Convolutions | GEE - 12

    卷积 想要对图像执行线性卷积操作,使用image.convolve()函数。该函数只有一个参数,称之为ee.Ker...

  • EZ | Introduction | GEE - 01

    请注意,GEE不适用于任何SLA或者弃用政策,点击这里注册账户。 介绍 欢迎使用GEE,这是世界上最棒的一个基于云...

  • EZ | Python Installation | GEE -

    概览 GEE的Python语言的API是一个客户端库,想使用这个API,最少要安装PythonAPI客户端库和他的...

  • EZ | Get Help | GEE - 06

    Get Help GEE的教程和开发文档旨在帮助用户开始常规分析,但学习使用GEE做一些特定的分析任务就不太容易了...

  • EZ | Command Line Tool | GEE - 0

    earthengine工具是一个实用的程序,用来管理你的GEE资产库和命令行的任务,当你安装Python的API时...

  • EZ | Image information and metad

    图像信息以及元数据 想要在代码编辑器中得到图像波段和其他属性信息,可以使用print()函数,然后信息就会显示在控...

  • GEE学习笔记 八

    GEE的基本数据类型和语法介绍 这里罗列一些和JavaScript对应的GEE常见的数据类型,不包括Image、F...

  • some upsample methods in compute

    参考: Jeremy Jordan--An overview of semantic image segmenta...

网友评论

    本文标题:EZ | Image Overview | GEE - 07

    本文链接:https://www.haomeiwen.com/subject/qbfcrctx.html