Skip to content

Commit

Permalink
put offsets in workflow name
Browse files Browse the repository at this point in the history
  • Loading branch information
scottyhq committed Jan 27, 2024
1 parent 2095119 commit 1b386a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/timeseries_slc_denseoffsets.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ~n+3, n+6, n+9 mo for a given date
name: TimeseriesSLCOffsets
run-name: Phase ${{ inputs.year }} ${{ inputs.fullBurstID }} ${{ inputs.polarization }} ${{ inputs.nlooks }} ${{ inputs.npairs }}
run-name: Offsets ${{ inputs.year }} ${{ inputs.fullBurstID }} ${{ inputs.polarization }} ${{ inputs.nlooks }} ${{ inputs.npairs }}

on:
workflow_dispatch:
Expand Down Expand Up @@ -127,8 +127,8 @@ jobs:
pairs = []
for r in range(idx_end_of_year + 1):
for s in range(1, ${{ inputs.npairs }} + 1 ):
# roughly every 4 months
step = int(len(gf)/4)*s
# roughly every 3 months (for 30ac/year)
step = int(len(gf)/5)*s
try:
ref = burstIDs[r]
sec = burstIDs[r+step]
Expand Down

0 comments on commit 1b386a4

Please sign in to comment.