#!/usr/bin/env python3 # -*- coding: utf-8 -*- # #--------------------------------------------------------------------------------# # This file is part of the PALM model system. # # PALM is free software: you can redistribute it and/or modify it under the terms # of the GNU General Public License as published by the Free Software Foundation, # either version 3 of the License, or (at your option) any later version. # # PALM is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # PALM. If not, see . # # Copyright 1997-2020 Leibniz Universitaet Hannover #--------------------------------------------------------------------------------# # # Current revisions: # ----------------- # # # Former revisions: # ----------------- # $Id$ # Initial revision # # # 3668 2019-01-14 12:49:24Z maronga # # Description: # ------------ # Processing tool for creating PIDS conform virtual measurement setup file # from UC2 data-standard conform observational data or from prescribed input # coordinates. # # @Author Matthias Suehring (suehring@muk.uni-hannover.de) # #--------------------------------------------------------------------------------# # Section where some global file attributes can be specified. [global] author = Suehring, Matthias, suehring@muk.uni-hannover.de contact_person = Suehring, Matthias, suehring@muk.uni-hannover.de acronym = LUHimuk comment = created with palm_cvd data_content = measurement coordinates dependencies = none keywords = virtual measurement setup file source = none campaign = winter iop 1 location = Berlin site = Ernst Reuter Platz institution = Institute of Meteorology and Climatology, Leibniz University Hannover palm_version = 6.0 references = none # Section for observational input data. If non observational input data is available # just omit this section. [input] data_path = < path to your observational input data > # Section to specify the output path and the output filename. [output] output_path = < your output path > output_filename = vm_driver # Section to specify further sampling locations and sampling variables. Please note, # at the moment only timeseries can be specified. # If non customized sampling location is desired, just set number_positions to zero. [custom_positions] # Give the number of custom sampling coordinates number_positions = 4 # Give site coordinates: E_UTM (m), N_UTM (m), z (m). # Please give z in meters above ground. # # [ E_UTM, N_UTM, z (agl) ] coordinates1: [ 387670.0, 5819090.0, 4.0 ] coordinates2: [ 387676.0, 5819139.0, 1.0 ] coordinates3: [ 387630.0, 5819065.0, 41.0 ] coordinates4: [ 387270.0, 5819191.0, 8.5 ] # ... # Give the variables that shall be sampled. Note, there is a # number of default variables that will be always sampled, which is: # u, v, w, theta and hus (mixing ratio). # On top of these, you can individually prescribe further variables # for each site. In order to prescribe further variables, please # follow the naming convention defined in the [UC]2 data standard. vars_to_be_measured1: [ "u", "v", "w", "theta", "rlus", "rsus" ] vars_to_be_measured2: [ "rnds", "wdir" ] vars_to_be_measured3: [ "us" ] vars_to_be_measured4: [ "utheta", "vtheta", "wtheta", "wspeed" ] # ...