Skip to content
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

zero-diff bug fixes in make_bcs package #601

Merged
merged 21 commits into from
Sep 8, 2022
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
e55e401
pass range to LRRasterize to avoid undifined pixel
weiyuan-jiang Jun 24, 2022
b1421ad
remove unnecessary check
weiyuan-jiang Jun 24, 2022
9d87896
add more protection to avoid crash
weiyuan-jiang Jun 28, 2022
472aa5e
Merge branch 'bugfix/wjiang/pass_range_to_easev2' of github.com:GEOS-…
weiyuan-jiang Jun 28, 2022
77e8358
1) add shared_map 2) more cycle
weiyuan-jiang Jun 29, 2022
0660206
restore mkCatchParam.F9
weiyuan-jiang Jun 29, 2022
cbae185
more bug fix ( out of bound fix)
weiyuan-jiang Jul 1, 2022
d74aba2
more clean up
weiyuan-jiang Jul 6, 2022
6cbfe4c
due to non zero diff merge bcs versioning has to change
biljanaorescanin Jul 15, 2022
fab08fa
typo
biljanaorescanin Jul 15, 2022
e20c222
Merge branch 'develop' into bugfix/wjiang/pass_range_to_easev2
biljanaorescanin Jul 15, 2022
53fe75b
less invasive solution to communicating make_bcs reproducibility issues
gmao-rreichle Jul 17, 2022
2c77bed
fix for user defined dir
biljanaorescanin Jul 19, 2022
6ed8907
some cleanup of environment variables (make_bcs)
gmao-rreichle Jul 19, 2022
c68adbf
Merge branch 'develop' into bugfix/wjiang/pass_range_to_easev2
gmao-rreichle Jul 21, 2022
e91a8ad
setenv to set for NCPUS
biljanaorescanin Jul 21, 2022
50c53a0
Merge branch 'develop' into bugfix/wjiang/pass_range_to_easev2
biljanaorescanin Aug 3, 2022
9a0f9ad
removing ease m09 and m36 special handling for bcs
biljanaorescanin Aug 31, 2022
0db200e
Change fortran extensions iargc, getarg, getenv and system
biljanaorescanin Sep 1, 2022
1893e2d
Merge branch 'develop' into bugfix/wjiang/pass_range_to_easev2
gmao-rreichle Sep 1, 2022
625b9a8
Merge branch 'develop' into bugfix/wjiang/pass_range_to_easev2
sdrabenh Sep 8, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -785,20 +785,9 @@ SUBROUTINE mkEASEv2Raster
xs (i,j) = dble(xout)
end do
end do

where (ys > 90.)
ys = 90.D0
endwhere
where (ys < -90.)
ys = -90.D0
endwhere
where (xs > 180.)
xs = 180.D0
endwhere
where (xs < -180.)
xs = -180.D0
endwhere

gmao-rreichle marked this conversation as resolved.
Show resolved Hide resolved
call LRRasterize(EASElabel,xs,ys,nc=nc,nr=nr,xmn = xs(1,1), xmx= xs(nc_smap+1, nr_smap+1), ymn=ys(1,1), ymx = ys(nc_smap+1, nr_smap+1), Here=.false., Verb=.false.)
weiyuan-jiang marked this conversation as resolved.
Show resolved Hide resolved

stop
end SUBROUTINE mkEASEv2Raster

Expand Down