zl程序教程

您现在的位置是:首页 >  其他

当前栏目

Google Earth Engine ——高级陆地观测卫AVNIR-2 ORI 产品10m分辨率

Google产品 高级 Engine Earth 分辨率 观测 陆地
2023-09-11 14:15:12 时间

This dataset is contains orthorectified imagery from the Advanced Visible and Near Infrared Radiometer type 2 (AVNIR-2) sensor on-board the Advanced Land Observing Satellite (ALOS) "DAICHI".

The AVNIR-2 ORI product was created from AVNIR-2 1B1 data after stereo matching with reference to ALOS's Panchromatic Remote-sensing Instrument for Stereo Mapping (PRISM)-derived DSM AW3D30. The orthorectification process used AW3D30 DSM data when available and SRTM (The Shuttle Radar Topography Mission) DSM data otherwise.

该数据集包含来自高级陆地观测卫星 (ALOS)“DAICHI”上的高级可见光和近红外辐射计类型 2 (AVNIR-2) 传感器的正射校正图像。

AVNIR-2 ORI 产品是根据 AVNIR-2 1B1 数据在参照 ALOS 的立体映射全色遥感仪器 (PRISM) 衍生的 DSM AW3D30 进行立体匹配后创建的。正射校正过程在可用时使用 AW3D30 DSM 数据,否则使用 SRTM(航天飞机雷达地形任务)DSM 数据。

Dataset Availability

2006-04-26T00:00:00 - 2011-04-18T00:00:00

Dataset Provider

JAXA Earth Observation Research Center

Collection Snippet

ee.ImageCollection("JAXA/ALOS/AVNIR-2/ORI")

Resolution

10 meters

Bands Table

NameDescriptionMin*Max*
B1Blue (0.42 - 0.50 µm)1255
B2Green (0.52 - 0.60 µm)1255
B3Red (0.61 - 0.69 µm)1255
B4Near-Infrared (0.76 - 0.89 µm)1255

* = Values are estimated

影像属性:

NameTypeDescription
CENTER_ALTITUDEDoubleSatellite alitutude at scene center (km)
CENTER_FRAME_NUMBERDoubleFrame number of scene center (0000 to 7198)
CENTER_HEADING_ANGLEDoubleSatellite heading angle including Earth rotation at scene center (radians)
CENTER_SKEW_ANGLEDoubleImage skew angle at scene center (milli-radians)
CENTER_SOLAR_AZIMUTHDoubleAzimuth angle of the sun at scene center (°)
CENTER_SOLAR_ZENITHDoubleSolar elevation (zenith) angle of the sun at scene center (°)
CENTER_START_TIMEStringScene center time (UTC).
INCIDENT_ANGLEStringIncident angle "SNN.NNN" (S: Incident direction R/L, NN.NNN degrees)
ORBIT_DIRECTIONStringOrbit direction ("A"/"D": ascending/descending)
ORBIT_INCLINATIONDoubleNominal satellite orbit inclination (°)
ORBIT_CYCLE_PERIODDoubleNominal satellite orbit cycle period (min)
ORIENTATION_ANGLEDoubleAngle of the vertical axis of image frame from the map northing axis.
PROCESSING_DATEStringProcessing date (JST)
PROCESSING_FACILITYStringProcessing facility.
PROCESSING_SOFTWARE_VESRIONStringProcessing software version.
PROCESSING_TIMEStringProcessing time (JST)
PRODUCT_IDStringProduct ID e.g: "ABBBCCDE" * A: Observation mode ("O") * BBB: Processing level ("ORI") * CC: Framing ("RF" Geo-reference, "GT", Geo-coded True-north "GM", Geo-coded Map-north), * D: Map projection ("U": UTM, "P": PS) * E: Sensor type ("N": nadir 35km, "F": forward 35km "B": backward 35km "W": nadir 70km) * A: AVNIR-2
PRODUCT_NUMBERDoubleProduct version number
RSP_IDStringRSP ID e.g: "MPPPFFFFSN" * M: Oribit direction ("A": ascending, "D": descending) * PPP: RSP path number (0 to 671) * FFFF: RSP frame number (0000 to 7199) * SN: Scene shift ("-2" to " 2")
SATELLITE_NAMEStringSatellite name.
SCENE_IDStringScene ID e.g. "AABBBCDDDDDEEEE" * AA: Satellite code ("AL": ALOS) * BBB: Sensor code ("PSM": PRISM, "AV2": AVNIR-2) * C: Sensor type ("N": nadir 35km, "F": forward 35km, "B": backward 35km "W": nadir 70km, "A": AVNIR-2) * DDDDD: Total orbit number of scene center ("00001" to "99999") * EEEE: Frame number of scene center, including scene shift ("0000" to "7199")
SENSOR_CODEStringSensor code ("PSM": PRISM, "AV2": AVNIR-2)
SENSOR_TYPEStringSensor type ("N": nadir 35km, "F": forward 35km, "B": backward 35km "W": nadir 70km, "A": AVNIR-2)
TOTAL_ORBIT_NUMBERDoubleTotal orbit number of scene center.

使用说明:

The Japan Aerospace Exploration Agency (JAXA) releases the ALOS Orthorectified Image Product (ALOS-ORI) free of charge and open to the public with the following conditions:

  • When you provide or publish any products or services to a third party using this dataset, you are kindly requested to display that the original data is provided by JAXA.
  • When you publish your product(s) using this dataset, you are kindly requested to show the copyright (© JAXA) and the source of the data.
  • JAXA does not guarantee the quality and reliability of this dataset and JAXA assume no responsibility whatsoever for any direct or indirect damage and loss caused by use of this dataset. Also, JAXA will not be responsible for any damages of users due to changing, deleting or terminating the provision of this dataset.

代码:

var dataset = ee.ImageCollection('JAXA/ALOS/AVNIR-2/ORI')
                  .filter(ee.Filter.date('2011-01-01', '2011-04-01'));
var avnir2OriRgb = dataset.select(['B3', 'B2', 'B1']);
var avnir2OriRgbVis = {
  min: 0.0,
  max: 255.0,
};
Map.setCenter(138.7302, 35.3641, 12);
Map.addLayer(avnir2OriRgb, avnir2OriRgbVis, 'AVNIR-2 ORI RGB');