File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ def create_hotstart(self):
249249 ) # this is required to get depths for elevation
250250 self .hotstart_ini = {}
251251 for v in self .variables :
252- print ("creating hotstart for %s" % v )
252+ print ("Creating hotstart for %s" % v )
253253 initializer = self .info [v ]["initializer" ]
254254
255255 if (
@@ -1272,9 +1272,9 @@ def interp_from_mesh(
12721272 mesh1_idx = cKDTree (hgrid1 )
12731273
12741274 # Bulk query
1275- print ("interpolating horizontal grid from %s" % (hgrid_fn ))
1275+ print ("\t interpolating horizontal grid from %s" % (hgrid_fn ))
12761276 dist , indices = mesh1_idx .query (hgrid2 )
1277- print ("horizontal interpolation completed!" )
1277+ print ("\t horizontal interpolation completed!" )
12781278 dist = np .asarray (dist , dtype = float )
12791279 indices = np .asarray (indices )
12801280
@@ -1305,7 +1305,7 @@ def interp_from_mesh(
13051305 kind = "nearest" ,
13061306 )
13071307 vout [j , p , :] = f (z2 )
1308- print ("vertical grid interpolation completed!" )
1308+ print ("\t vertical grid interpolation completed!" )
13091309 else : # nearest or equation
13101310 x = hgrid2 [diff_points , 0 ]
13111311 y = hgrid2 [diff_points , 1 ]
You can’t perform that action at this time.
0 commit comments