Skip to content

Commit

Permalink
Whoopsies, typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zbuster05 committed Jan 12, 2022
1 parent 7b24431 commit 10ecae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flaskapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get(self, reqname):
datestr = time.strftime('%Y%m%d')
hrrr_value_list = []

coord_str = '-lon '+ reqname.split("=")[0] + ' ' + 2reqname.split("=")[1]
coord_str = '-lon '+ reqname.split("=")[0] + ' ' + reqname.split("=")[1]

hrrr_tmp = "/usr/bin/wgrib2 %s -match '%s' %s" % ('hrrr.grib2', 'TMP', coord_str)
hrrr_value = (str(subprocess.check_output(hrrr_tmp, shell=True))[:-3])
Expand Down

0 comments on commit 10ecae0

Please sign in to comment.