Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/observingclouds/seawatch_wind_lidar_buoy_reader
SEAWATCH lidar buoy CSV -> netCDF converter
https://github.com/observingclouds/seawatch_wind_lidar_buoy_reader
lidar wind-lidar
Last synced: 4 days ago
JSON representation
SEAWATCH lidar buoy CSV -> netCDF converter
- Host: GitHub
- URL: https://github.com/observingclouds/seawatch_wind_lidar_buoy_reader
- Owner: observingClouds
- Created: 2024-07-19T12:48:38.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-16T13:26:29.000Z (5 months ago)
- Last Synced: 2024-11-10T11:47:36.367Z (2 months ago)
- Topics: lidar, wind-lidar
- Language: Python
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SEAWATCH wind lidar buoy reader
This packages allows to read and convert CSV files provided from SEAWATCH wind lidar buoys.
This package is developed for a specific use-case and does not cover all possible scenarios. It is provided as is and without any warranty. Pull requests are welcome.
## Installation
```bash
pip install "git+ssh://github.com/observingClouds/seawatch_wind_lidar_buoy_reader#egg=seawatch_reader"
```## Usage
The package can be used as a command line tool or as a python module.
The package assumes the following folder structure:
```
/path/to/csv/file/collection/
|- /Stationname_Instrument_YYYYMMDD_WindSpeedDirectionTI.csv
|- /Stationname_Instrument_YYYYMMDD_WindStatus.csv
|- /Stationname_Instrument_YYYYMMDD_CurrentData.csv
```### Command line
```bash
seawatch_reader --path /path/to/csv/file/collection/ --output /path/to/output.nc --filetypes wsp_wdir_csv --config /path/to/config.yml
```An example for a configuration file is provided in the `config` folder. If no configuration file is provided, the file config/windspeed.yaml is used.
### Python module