Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cspp-geo-gridded-glm
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cspp_geo
cspp-geo-gridded-glm
Commits
73fbf869
Commit
73fbf869
authored
4 years ago
by
Nick Bearson
Browse files
Options
Downloads
Patches
Plain Diff
glmtools now uses a templated output path and generates filenames from it
parent
902309f7
No related branches found
No related tags found
1 merge request
!3
glm_grids_updates
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gridded_glm/bin/_make_glm_grids.py
+4
-3
4 additions, 3 deletions
gridded_glm/bin/_make_glm_grids.py
with
4 additions
and
3 deletions
gridded_glm/bin/_make_glm_grids.py
+
4
−
3
View file @
73fbf869
...
...
@@ -35,8 +35,8 @@ def create_parser():
help
=
'
each occurrence increases verbosity 1 level through ERROR-WARNING-INFO-DEBUG (default INFO)
'
)
parser
.
add_argument
(
'
-l
'
,
'
--log
'
,
dest
=
"
log_fn
"
,
default
=
None
,
help
=
"
specify the log filename
"
)
parser
.
add_argument
(
'
-o
'
,
'
--output-dir
'
,
metavar
=
'
directory
'
,
default
=
'
.
'
)
parser
.
add_argument
(
'
-o
'
,
'
--output-dir
'
,
metavar
=
'
output
directory
'
,
default
=
os
.
getcwd
()
)
parser
.
add_argument
(
'
--ctr-lat
'
,
metavar
=
'
latitude
'
,
type
=
float
,
help
=
'
center latitude
'
)
parser
.
add_argument
(
'
--ctr-lon
'
,
metavar
=
'
longitude
'
,
...
...
@@ -151,6 +151,7 @@ def grid_setup(args):
date
=
datetime
(
start_time
.
year
,
start_time
.
month
,
start_time
.
day
)
os
.
makedirs
(
args
.
output_dir
,
exist_ok
=
True
)
output
=
os
.
path
.
join
(
args
.
output_dir
,
"
{dataset_name}
"
)
# GLMTools expects a template in addition to the path
proj_name
=
'
geos
'
if
args
.
goes_position
is
not
None
and
args
.
goes_sector
is
not
None
:
...
...
@@ -216,7 +217,7 @@ def grid_setup(args):
base_date
=
date
,
do_3d
=
False
,
dx
=
dx
,
dy
=
dy
,
frame_interval
=
float
(
args
.
dt
),
x_bnd
=
x_bnd
,
y_bnd
=
y_bnd
,
ctr_lat
=
ctr_lat
,
ctr_lon
=
ctr_lon
,
outpath
=
args
.
output
_dir
,
ctr_lat
=
ctr_lat
,
ctr_lon
=
ctr_lon
,
outpath
=
output
,
min_points_per_flash
=
min_events
,
output_writer
=
output_writer
,
subdivide
=
args
.
subdivide_grid
,
output_filename_prefix
=
output_filename_prefix
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment