Skip to content

Commit

Permalink
Separate '_decim.nc' and '_1S.nc' loads and load just the latter
Browse files Browse the repository at this point in the history
  • Loading branch information
MBARIMike committed Aug 12, 2024
1 parent 4b065b9 commit 6af70b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stoqs/loaders/PlanktonProxies/load_all_dorado.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@
startdate = datetime.strptime(cl.args.startdate, '%Y%m%d')
if cl.args.enddate:
enddate = datetime.strptime(cl.args.enddate, '%Y%m%d')
cl.loadDorado(startdate, enddate, build_attrs=True, plankton_proxies=True)
cl.loadDorado(startdate, enddate, build_attrs=True, file_patterns=(r".*netcdf/dorado_.*1S.nc", ))
#cl.loadDorado(startdate, enddate, build_attrs=True, file_patterns=(r".*_decim.nc$", ), plankton_proxies=True)

# Add any X3D Terrain information specified in the constructor to the database - must be done after a load is executed
cl.addTerrainResources()
Expand Down

0 comments on commit 6af70b5

Please sign in to comment.