Skip to content

Commit

Permalink
Feat: SOOP ASF, add new dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
lbesnard committed Sep 27, 2024
1 parent 561c348 commit 7e79fdc
Show file tree
Hide file tree
Showing 8 changed files with 2,806 additions and 0 deletions.
24 changes: 24 additions & 0 deletions aodn_cloud_optimised/bin/vessel_air_sea_flux_product_delayed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env python3
import subprocess


def main():
command = [
"generic_cloud_optimised_creation",
"--paths",
"IMOS/SOOP/SOOP-ASF/",
"--filters",
"flux_product",
"--dataset-config",
"vessel_air_sea_flux_product_delayed.json",
"--clear-existing-data",
"--cluster-mode",
"remote",
]

# Run the command
subprocess.run(command, check=True)


if __name__ == "__main__":
main()
24 changes: 24 additions & 0 deletions aodn_cloud_optimised/bin/vessel_air_sea_flux_sst_meteo_realtime.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env python3
import subprocess


def main():
command = [
"generic_cloud_optimised_creation",
"--paths",
"IMOS/SOOP/SOOP-ASF/",
"--filters",
"meteorological_sst_observations",
"--dataset-config",
"vessel_air_sea_flux_sst_meteo_realtime.json",
"--clear-existing-data",
"--cluster-mode",
"remote",
]

# Run the command
subprocess.run(command, check=True)


if __name__ == "__main__":
main()
Loading

0 comments on commit 7e79fdc

Please sign in to comment.