-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
computing albedo #78
Comments
Hi Jason, I have not been looking much at radiation so far. I am looking at applying the tilt correction from JAWS now, but there are some limitations in time due to ancillary files that JAWS uses and that need to be updated for the years after 2016. (see jaws/jaws#204). There still a lot of filters that could be added to the processing pipeline. |
OK, I will continue and try to have my filtering output ranges useful by this repository note |
here's my IDL to filter albedo, for 2000 to 2016, I'll look into translating it and making it useful by this repository `` if aws_nam(st) eq 'PTE' then begin if aws_nam(st) eq 'JR2' then begin if aws_nam(st) eq 'NSE' then begin if aws_nam(st) eq 'NGP' then begin if aws_nam(st) eq 'CP2' then begin if aws_nam(st) eq 'NAE' then begin if aws_nam(st) eq 'SDM' then begin if fix(year(yy)) eq 2008 then begin endif if aws_nam(st) eq 'SDL' then begin if aws_nam(st) eq 'JR1' then begin if aws_nam(st) eq 'DY2' then begin if aws_nam(st) eq 'TUN' then begin if aws_nam(st) eq 'SUM' then begin if aws_nam(st) eq 'HUM' then begin endif if aws_nam(st) eq 'GIT' then begin if aws_nam(st) eq 'NAU' then begin if aws_nam(st) eq 'CP1' then begin if aws_nam(st) eq 'SWC' then begin |
Thanks for the info! I am adding albedo as an output in the next commit, but it will have only limited quality check. |
agree it's smarter "What I had in mind was to use albedo to discard SWin or SWout, but not directly filter albedo." anyway, I went ahead an implemented a way to save the adjustment parameters in the standard format for min and max filters to DAILY albedo I took the ~45 min to work through the Summit data series for a collab with Ohmura for us to discuss. here is the repo https://github.com/jasonebox/GCN_albedo I output daily and seasonal albedo for Summit 1996-2021 I'm going to look into air T now for Summit, may be I find reason to apply adjustments. |
Hi Baptiste
checking if another approach for GCN albedo is in the pipeline, to QC the GCN data. I guess JAWS?
Anyway, I've started comparing daily GCN L1 albedo with MODIS C6.1
looping over yy years and dd day of year
v=((df.year==yy+i_year)&(df.doy==dd+1)) if sum(v)==24: denom=np.nansum(df.ISWR[v]) numerator=np.nansum(df.OSWR[v]) if denom>numerator:alb[dd]=numerator/denom
Jason
ps. here's a plot
The text was updated successfully, but these errors were encountered: