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

Fix index 1 vs. 2 bug in g2getgb2.F90 #662

Merged
merged 2 commits into from
May 9, 2024
Merged
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion src/g2getgb2.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ subroutine getgb2rp2(lugb, idxver, cindex, extract, gribm, leng, iret)

! Copy Section 1
gribm(17:16 + len1) = cindex(45 + inc:44 + inc + len1)
lencur = 16 + inc + len1
lencur = 16 + len1
ipos = 44 + inc + len1

! Copy Section 2, if necessary
Expand Down
Loading