Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Ray Garcia
himawari
Commits
cc911fce
Commit
cc911fce
authored
Sep 01, 2017
by
R.K.Garcia
Browse files
LeeC recommended metadata changes for SCMI
parent
3d25bd4a
Changes
1
Hide whitespace changes
Inline
Side-by-side
himawari/ahi2cmi.py
View file @
cc911fce
...
...
@@ -37,6 +37,9 @@ AHI_BIT_DEPTH = dict(zip(range(1,17), [11, 11, 11, 11,
11
,
12
,
12
,
12
,
12
,
12
,
12
,
11
]))
SCENE_ID_CONVERSION
=
{
"FLDK"
:
"Full Disk"
,
}
class
HimawariAHIasCMIP
(
object
):
"""
...
...
@@ -297,12 +300,11 @@ class HimawariAHIasCMIP(object):
@
property
def
orbital_slot
(
self
):
return
self
.
_hs
.
satellite_name
return
"GOES-{}"
.
format
(
self
.
_hs
.
satellite_name
)
@
property
def
scene_id
(
self
):
return
self
.
_hs
.
observation_area
# FUTURE: translate from FLDK et al to Full Disk et al?
return
SCENE_ID_CONVERSION
.
get
(
self
.
_hs
.
observation_area
,
self
.
_hs
.
observation_area
)
@
property
def
central_wavelength
(
self
):
...
...
@@ -504,7 +506,7 @@ class HimawariAHIasCMIP(object):
@
property
def
mode
(
self
):
return
0
return
3
@
property
def
band
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment