Skip to content
Snippets Groups Projects
Commit ab044a8e authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Polish

parent a7296370
No related branches found
No related tags found
No related merge requests found
...@@ -116,28 +116,28 @@ else: ...@@ -116,28 +116,28 @@ else:
final_date = my_date final_date = my_date
factories = [dict(writers = {}, cell_name = "Anticyclonic_Cell", factories = [dict(writers = {}, cell_name = "Anticyclonic_Cell",
cyclone = False, SHP_coll = "SHPC_anti"), cyclone = False, SHPC = "SHPC_anti"),
dict(writers = {}, cell_name = "Cyclonic_Cell", cyclone = True, dict(writers = {}, cell_name = "Cyclonic_Cell", cyclone = True,
SHP_coll = "SHPC_cyclo")] SHPC = "SHPC_cyclo")]
for f in factories: for f in factories:
file = path.join(f["SHP_coll"], "extremum") file = path.join(f["SHPC"], "extremum")
f["writers"]["extr"] = shapefile.Writer(file, shapeType = shapefile.POINT) f["writers"]["extr"] = shapefile.Writer(file, shapeType = shapefile.POINT)
file = path.join(f["SHP_coll"], "centroid") file = path.join(f["SHPC"], "centroid")
f["writers"]["centroid"] = shapefile.Writer(file, f["writers"]["centroid"] = shapefile.Writer(file,
shapeType = shapefile.POINT) shapeType = shapefile.POINT)
file = path.join(f["SHP_coll"], "outermost_contour") file = path.join(f["SHPC"], "outermost_contour")
f["writers"]["outer"] = shapefile.Writer(file, f["writers"]["outer"] = shapefile.Writer(file,
shapeType = shapefile.POLYGON) shapeType = shapefile.POLYGON)
file = path.join(f["SHP_coll"], "max_speed_contour") file = path.join(f["SHPC"], "max_speed_contour")
f["writers"]["max_speed"] = shapefile.Writer(file, f["writers"]["max_speed"] = shapefile.Writer(file,
shapeType = shapefile.POLYGON) shapeType = shapefile.POLYGON)
define_fields(f["writers"]) define_fields(f["writers"])
file = path.join(f["SHP_coll"], "ishape_last.txt") file = path.join(f["SHPC"], "ishape_last.txt")
f["writers"]["ishape_last"] = open(file, "w") f["writers"]["ishape_last"] = open(file, "w")
...@@ -179,6 +179,6 @@ nml["grid_nml"] = dict(corner_deg = [matlab_data["X"][0], matlab_data["Y"][0]], ...@@ -179,6 +179,6 @@ nml["grid_nml"] = dict(corner_deg = [matlab_data["X"][0], matlab_data["Y"][0]],
matlab_data["Y"][1] - matlab_data["Y"][0]]) matlab_data["Y"][1] - matlab_data["Y"][0]])
for f in factories: for f in factories:
file = path.join(f["SHP_coll"], "grid_nml.txt") file = path.join(f["SHPC"], "grid_nml.txt")
nml.write(file, force = True) nml.write(file, force = True)
for k, v in f["writers"].items(): v.close() for k, v in f["writers"].items(): v.close()
...@@ -130,7 +130,10 @@ def plot_all(dict_list, label = None): ...@@ -130,7 +130,10 @@ def plot_all(dict_list, label = None):
if __name__ == "__main__": if __name__ == "__main__":
import sys import sys
if len(sys.argv) != 2: sys.exit("Required argument: directory") if len(sys.argv) != 2:
sys.exit("Required argument: directory containing collection of "
"shapefiles")
d = read(sys.argv[1]) d = read(sys.argv[1])
plot_all([d]) plot_all([d])
plt.show() plt.show()
...@@ -24,7 +24,7 @@ contains ...@@ -24,7 +24,7 @@ contains
!---------------------------------------------------------------------- !----------------------------------------------------------------------
write(unit = error_unit, nml = main_nml) write(unit = error_unit, nml = main_nml)
write(unit = error_unit, fmt = *) "Enter namelist main_nml." write(unit = error_unit, fmt = *) "config: Enter namelist main_nml."
read(unit = *, nml = main_nml) read(unit = *, nml = main_nml)
call write_nml(shp_tr_dir = "SHPC_cyclo") call write_nml(shp_tr_dir = "SHPC_cyclo")
call write_nml(shp_tr_dir = "SHPC_anti") call write_nml(shp_tr_dir = "SHPC_anti")
...@@ -54,9 +54,9 @@ contains ...@@ -54,9 +54,9 @@ contains
! (This also allows us to verify that the directory shp_tr_dir exists.) ! (This also allows us to verify that the directory shp_tr_dir exists.)
if (iostat /= 0) then if (iostat /= 0) then
write(unit = error_unit, fmt = *) trim(iomsg) write(unit = error_unit, fmt = *) "write_nml: ", trim(iomsg)
write(unit = error_unit, fmt = *) 'Have you created the directory "', & write(unit = error_unit, fmt = *) 'write_nml: ', &
shp_tr_dir, '"?' 'Have you created the directory "', shp_tr_dir, '"?'
stop 1 stop 1
end if end if
......
...@@ -104,7 +104,7 @@ program inst_eddies ...@@ -104,7 +104,7 @@ program inst_eddies
! As we are requiring the grid spacing to be uniform, the value of ! As we are requiring the grid spacing to be uniform, the value of
! "periodic" may be deduced from the values of step(1) and nlon: ! "periodic" may be deduced from the values of step(1) and nlon:
periodic = nint(twopi / step(1)) == nlon periodic = nint(twopi / step(1)) == nlon
print *, "periodic = ", periodic print *, "inst_eddies: periodic = ", periodic
call assert(2 * max_radius_deg(1) < 180., "inst_eddies max_radius_deg") call assert(2 * max_radius_deg(1) < 180., "inst_eddies max_radius_deg")
! (Let us require this even if not periodic. This is clearer.) ! (Let us require this even if not periodic. This is clearer.)
...@@ -194,7 +194,8 @@ program inst_eddies ...@@ -194,7 +194,8 @@ program inst_eddies
CALL shp_tr_close(hshp_cyclo) CALL shp_tr_close(hshp_cyclo)
CALL shp_tr_close(hshp_anti) CALL shp_tr_close(hshp_anti)
print *, 'Created shapefile collections in SHPC_cyclo and SHPC_anti.' print *, 'inst_eddies: Created shapefile collections in SHPC_cyclo and ', &
'SHPC_anti.'
call write_aux(corner_deg, step_deg, nlon, nlat, n_cyclo, & call write_aux(corner_deg, step_deg, nlon, nlat, n_cyclo, &
shp_tr_dir = "SHPC_cyclo") shp_tr_dir = "SHPC_cyclo")
call write_aux(corner_deg, step_deg, nlon, nlat, n_anti, & call write_aux(corner_deg, step_deg, nlon, nlat, n_anti, &
......
...@@ -45,7 +45,7 @@ else: ...@@ -45,7 +45,7 @@ else:
last_date = my_date last_date = my_date
while True: while True:
print("Date:", my_date) print("inst_eddies.py: Date:", my_date)
if os.access(nc_file, os.F_OK): if os.access(nc_file, os.F_OK):
if args.bbox: if args.bbox:
...@@ -69,7 +69,7 @@ while True: ...@@ -69,7 +69,7 @@ while True:
os.remove("h.nc") os.remove("h.nc")
os.remove("uv.nc") os.remove("uv.nc")
else: else:
print("Missing file:", nc_file) print("inst_eddies.py: Missing file:", nc_file)
for orient in ["cyclo", "anti"]: for orient in ["cyclo", "anti"]:
if os.access(f"SHPC_{orient}_all_dates", os.F_OK): if os.access(f"SHPC_{orient}_all_dates", os.F_OK):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment