Skip to content

Commit

Permalink
Merge pull request #14 from CDJellen/usna-full
Browse files Browse the repository at this point in the history
Add USNA full dataset download scripts
  • Loading branch information
CDJellen committed Jan 30, 2024
2 parents dfc2cca + c8afc95 commit 53cab9d
Show file tree
Hide file tree
Showing 6 changed files with 97 additions and 1 deletion.
Empty file.
76 changes: 76 additions & 0 deletions otbench/data/usna_cn2_full/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
## United States Naval Academy Long-term Scintillation Study (Cn2) Full Dataset

### Summary

Scintillometer, meteorological, and oceanographic data from the United States Naval Academy between January 1st 2020 and September 26th 2023. The dataset includes:
* Cn2 as measured by a ScinTec BLS450 Scintillometer,
* meteorological data from a co-located Davis Vantage Pro2 weather station and NOAA CO-OPS observation station (8575512), and
* oceanographic data from a nearby National Data Buoy Center buoy (TPLM2) and NOAA CO-OPS observation station (8575512).

### Versions

1.0

### Citation
```bibtex
@misc{jellen2023otbench,
author = {Jellen, Christopher and Nelson, Charles and Burkhardt, John and Brownell, Cody}.
title = {otbench: Effective Benchmarks for Optical Turbulence Modeling},
howpublished = {\url{github.com/CDJellen/otbench}},
year = {2023},
}
```

```bibtex
@misc{jellen2024usnacn2full,
author = {Jellen, Christopher and Nelson, Charles and Burkhardt, John and Brownell, Cody}.
title = {The USNA Long-term Scintillation Study ({$C_n^2$}) Full Dataset},
howpublished = {\url{github.com/CDJellen/otbench}},
year = {2024},
}
```

### Acknowledgement

In addition to the citation reference and any other acknowledgements, please acknowledge ONR and DE-JTO in your publications with text such as:

> Data provided by the United States Naval Academy under the sponsorship of the Office of Naval Research, the Directed Energy Joint Technology Office, and the United States Naval Academy Trident Scholar Program.
### Additional information

* Frequency: 1 minute
* Language: English

### Categories

* Surface

### Platforms

* National Data Buoy Center station TPLM2
* NOAA CO-OPS station 8575512

### Instruments

* ScinTec BLS450
* Davis Vantage Pro2

### Temporal coverage

* Begin datetime: 2020-01-01 00:00:00
* End datetime: 2023-09-26 10:45:00

### Spatial coverage

* Maximum (North) Latitude: 38.98
* Minimum (South) Latitude: 38.98
* Minimum (West) Longitude: -76.48
* Maximum (East) Longitude: -76.48

### Primary contact information

* author: Chris Jellen <cdjellen@gmail.com>

### Additional contact information

* author:
6 changes: 6 additions & 0 deletions otbench/data/usna_cn2_full/citation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@misc{jellen2024usnacn2full,
author = {Jellen, Christopher and Nelson, Charles and Burkhardt, John and Brownell, Cody}.
title = {The USNA Long-term Scintillation Study ({$C_n^2$}) Full Dataset},
howpublished = {\url{github.com/CDJellen/otbench}},
year = {2024},
}
7 changes: 7 additions & 0 deletions otbench/data/usna_cn2_full/download_usna_full_csv.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

URL="drive.google.com/u/3/uc?id=18O7s6Fz287Yo0iUyV_HASShoKUPFKsAB&export=download&confirm=yes"
FILENAME="usna_full.csv"

# Download the file
wget "$URL" -O "$FILENAME"
7 changes: 7 additions & 0 deletions otbench/data/usna_cn2_full/download_usna_full_nc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

URL="drive.google.com/u/3/uc?id=1sio9lqMteIx67OVcUmRDH1Ry7pe2i48F&export=download&confirm=yes"
FILENAME="usna_full.nc"

# Download the file
wget "$URL" -O "$FILENAME"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
setuptools.setup(
name='otbench',
packages=setuptools.find_packages(exclude=['*tests*', '*notebooks*']),
version='0.24.1.7.1',
version='0.24.1.29.1',
license='MIT',
description='Consistent benchmarks for evaluating optical turbulence strength models.',
author='Chris Jellen',
Expand Down

0 comments on commit 53cab9d

Please sign in to comment.