We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8e4084 + c8251ea commit c1a3000Copy full SHA for c1a3000
particle_tracking_manager/models/opendrift/opendrift.py
@@ -1051,12 +1051,13 @@ def run_drifters(self):
1051
self.o.outfile_name = self.output_file
1052
self.output_file = self.output_file
1053
1054
- try:
1055
- # remove initial file to save space
1056
- os.remove(self.output_file_initial)
1057
- except PermissionError:
1058
- # windows issue
1059
- pass
+ # don't remove the initial netcdf file since will use that for plots if needed
+ # try:
+ # # remove initial file to save space
+ # os.remove(self.output_file_initial)
+ # except PermissionError:
+ # # windows issue
1060
+ # pass
1061
1062
@property
1063
def _config(self):
0 commit comments