Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
intercal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Collocation
intercal
Merge requests
!2
modifications for `Crisify` SIPS processing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
modifications for `Crisify` SIPS processing
crisify
into
master
Overview
2
Commits
2
Pipelines
0
Changes
4
Merged
Dongwei Fu
requested to merge
crisify
into
master
1 year ago
Overview
2
Commits
2
Pipelines
0
Changes
4
Expand
Added CRIS FSR wavenumbers to
cris.py
and
hs2modis.py
Added
shift_id
to
Cris2Modis
in hs2modis.py
Added C6.1 shifts for Terra and Aqua in
modis_srf.py
0
0
Merge request reports
Compare
master
version 1
74df9c71
1 year ago
master (base)
and
latest version
latest version
cf9d40f7
2 commits,
1 year ago
version 1
74df9c71
1 commit,
1 year ago
4 files
+
49
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
src/intercal/cris.py
+
7
−
0
Options
@@ -4,7 +4,14 @@ import numpy as np
def
low_res_wavenumbers
():
return
np
.
concatenate
([
wn_low_res
[
b
]
for
b
in
[
'
lw
'
,
'
mw
'
,
'
sw
'
]])
def
full_res_wavenumbers
():
return
np
.
concatenate
([
wn_full_res
[
b
]
for
b
in
[
'
lw
'
,
'
mw
'
,
'
sw
'
]])
wn_low_res
=
{
'
lw
'
:
np
.
linspace
(
648.75
,
1096.25
,
717
),
'
mw
'
:
np
.
linspace
(
1207.5
,
1752.5
,
437
),
'
sw
'
:
np
.
linspace
(
2150
,
2555
,
163
)}
wn_full_res
=
{
'
lw
'
:
np
.
linspace
(
648.75
,
1096.25
,
717
),
'
mw
'
:
np
.
linspace
(
1207.5
,
1752.5
,
869
),
'
sw
'
:
np
.
linspace
(
2150
,
2555
,
637
)}
Loading