- Dataset Availability
- 2006-04-26T00:00:00Z–2011-04-18T00:00:00Z
- Dataset Provider
- JAXA Earth Observation Research Center
- Earth Engine Snippet
-
ee.ImageCollection("JAXA/ALOS/AVNIR-2/ORI")
- Tags
Description
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.
Bands
Resolution
10 meters
Bands
Name | Min | Max | Description |
---|---|---|---|
B1 |
1* | 255* | Blue (0.42 - 0.50 μm) |
B2 |
1* | 255* | Green (0.52 - 0.60 μm) |
B3 |
1* | 255* | Red (0.61 - 0.69 μm) |
B4 |
1* | 255* | Near-Infrared (0.76 - 0.89 μm) |
Image Properties
Image Properties
Name | Type | Description |
---|---|---|
CENTER_ALTITUDE | DOUBLE | Satellite alitutude at scene center (km) |
CENTER_FRAME_NUMBER | DOUBLE | Frame number of scene center (0000 to 7198) |
CENTER_HEADING_ANGLE | DOUBLE | Satellite heading angle including Earth rotation at scene center (radians) |
CENTER_SKEW_ANGLE | DOUBLE | Image skew angle at scene center (milli-radians) |
CENTER_SOLAR_AZIMUTH | DOUBLE | Azimuth angle of the sun at scene center (°) |
CENTER_SOLAR_ZENITH | DOUBLE | Solar elevation (zenith) angle of the sun at scene center (°) |
CENTER_START_TIME | STRING | Scene center time (UTC). |
INCIDENT_ANGLE | STRING | Incident angle "SNN.NNN" (S: Incident direction R/L, NN.NNN degrees) |
ORBIT_DIRECTION | STRING | Orbit direction ("A"/"D": ascending/descending) |
ORBIT_INCLINATION | DOUBLE | Nominal satellite orbit inclination (°) |
ORBIT_CYCLE_PERIOD | DOUBLE | Nominal satellite orbit cycle period (min) |
ORIENTATION_ANGLE | DOUBLE | Angle of the vertical axis of image frame from the map northing axis. |
PROCESSING_DATE | STRING | Processing date (JST) |
PROCESSING_FACILITY | STRING | Processing facility. |
PROCESSING_SOFTWARE_VESRION | STRING | Processing software version. |
PROCESSING_TIME | STRING | Processing time (JST) |
PRODUCT_ID | STRING | Product ID e.g: "ABBBCCDE"
|
PRODUCT_NUMBER | DOUBLE | Product version number |
RSP_ID | STRING | RSP ID e.g: "MPPPFFFFSN"
|
SATELLITE_NAME | STRING | Satellite name. |
SCENE_ID | STRING | Scene ID e.g. "AABBBCDDDDDEEEE"
|
SENSOR_CODE | STRING | Sensor code ("PSM": PRISM, "AV2": AVNIR-2) |
SENSOR_TYPE | STRING | Sensor type ("N": nadir 35km, "F": forward 35km, "B": backward 35km "W": nadir 70km, "A": AVNIR-2) |
TOTAL_ORBIT_NUMBER | DOUBLE | Total orbit number of scene center. |
Terms of Use
Terms of Use
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.
Explore with Earth Engine
Code Editor (JavaScript)
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');