Skip to main content

Wind Lidar Data Converter.

Project description

Lidaco

Lidaco (Wind Lidar Data Converter) is a library and executable that enables a modular writing of data converters.

Following the configurations that are specified by the user on a config.yml(s), a Reader module is selected to import the data from input files. Similarly, a Reader is also selected to write the output file(s).

Lidaco works on datasets that can be described using the unidata Common Data Model. It can be used to process single files or entire folders.

Available Readers
* AQ500
* Galion
* WLS70
* Windcubev1
* Windcubev2
* Windscanner
* ZephIR300 
Available Writers
* MetadataCard
* NcML
* NetCDF4

Getting started

Install
pip install lidaco
Run
lidaco --config-file=samples/Windscanner/config.yaml
In code
from lidaco.core.Builder import Builder

builder = Builder(config_file = 'path/to/config.yaml')
builder.build()

Converting data

Writing conversion files

Each conversion requires a configuration file written in YAML. This file contains four (optional) main groups of configurations:

Parameters

This section allows you to specify the parameters for the converter itself, the selected reader and or writer. The converter parameters are:

parameters:
  input: 
    path: ./path/to/input/folder/
    format: Windscanner
  output: 
    format: NetCDF4 

To know each specific reader/writer parameter read the respective documentation available, or try to take a look at its source code.

Attributes

This section specify the global attributes that will be added to the dataset. You can add all attributes you desire.

attributes:
  # e.g.,
  lidar_technology: 'pulsed'
  lidar_scanning_type: 'vertical profiling'
  data_processing_history: 'data taken from .scn files generated by ...'
Variables

This section is similar to Attributes but instead of reading being used to specify Attributes, it is used to specify variables.

variables:   
  # e.g.,
  pitch:
    data_type: 'f4'
    units: 'degrees'
    long_name: 'lidar_pitch_angle'
    comment: ''
    accuracy: ''
    accuracy_info: 'No information on pitch accuracy available.'
    value: 0
Imports

Lidaco configuration system is built to motivate the configurations reusability, so each config file can import others. With this mechanism you can to split your configurations into devices, scenarios, campaigns and so on. In case of collision, each the file that specify a certain config, overrides the further imported ones.

imports: # read in order
  - ./general/NEWA_Kassel_general_dataset.yaml
  - ./instruments/Windcubev2_general_instrument_description.yaml
  - ./processing/NEWA_Kassel_data_processing_history.yaml

For more examples on how to setup your config files, take a look at the available Samples.


Contributing

If you would like to add, or see being added, some change to the converter you can:

To submit a new Reader/Writer
  • Create a python class at lidaco.readers or lidaco.writers, if you are writing a reader or writer respectively.
  • The file and class should have the same name, that will be used in the config files.
  • It should extend core.reader or core.writer.

Take a look at the existing readers and writers.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lidaco-0.0.17.tar.gz (20.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page