128 | | Further, independent of any campaign data, it is possible to prescribe additional sites with [source:palm/trunk/SCRIPTS/palm_cvd palm_cvd], where the respective UTM coordinates and the sampled quantities need to be specified in the config file. At the moment only stationary coordinates can be specified in the config file. However, it is planned to extend palm_cvd and its config file to be able to specify also trajectory measurements or more advanced sampling approaches such as Lidar scans. |
129 | | |
| 131 | Further, independent of any campaign data, it is possible to prescribe additional sites with [source:palm/trunk/SCRIPTS/palm_cvd palm_cvd], where the respective UTM coordinates and the sampled quantities need to be specified in the config file (custom-mode). At the moment only stationary coordinates can be specified in the config file. However, it is planned to extend palm_cvd and its config file to be able to specify also trajectory measurements or more advanced sampling approaches such as Lidar scans. |
| 132 | |
| 133 | {{{palm_cvd}}} reads a config file (a default config file is available in /trunk/SCRIPTS/.cvd.config.default). The measurement input file requires a number of global attributes which you can specify accordingly. If you cannot give any reasonable information here, just leave it empty. |
| 134 | |
| 135 | {{{ |
| 136 | [global] |
| 137 | |
| 138 | author = name, mail-adress |
| 139 | contact_person = |
| 140 | acronym = |
| 141 | comment = |
| 142 | data_content = |
| 143 | dependencies = |
| 144 | keywords = |
| 145 | source = |
| 146 | campaign = iop 1 |
| 147 | location = B |
| 148 | site = Ernst Reuter Platz |
| 149 | institution = Leibniz Universität Hannover, Institute of Meterology and Climatology # for (UC)2 conform in/output please follow guidelines in table A3 |
| 150 | palm_version = 6.0 |
| 151 | references = |
| 152 | }}} |
| 153 | |
| 154 | In case there exist already NetCDF files with the required metadata, you need to specify the path to the data in the input-section: |
| 155 | {{{ |
| 156 | [input] |
| 157 | |
| 158 | data_path = < path to your observational input data > |
| 159 | }}} |
| 160 | If you do not have such files, just leave it empty. |
| 161 | |
| 162 | The output path and name of your setup file need to be specified here: |
| 163 | {{{ |
| 164 | [output] |
| 165 | |
| 166 | output_path = < your output path > |
| 167 | output_filename = vm_driver |
| 168 | }}} |
| 169 | |
| 170 | In case you want to specify measurement locations manually, you need to adjust the following section in .cvd.config.xxx: |
| 171 | {{{ |
| 172 | [custom_positions] |
| 173 | |
| 174 | # Give the number of custom sampling coordinates |
| 175 | number_positions = 4 |
| 176 | |
| 177 | # Give site coordinates: E_UTM (m), N_UTM (m), z (m). |
| 178 | # Please give z in meters above ground. |
| 179 | # |
| 180 | # [ E_UTM, N_UTM, z (agl) ] |
| 181 | |
| 182 | coordinates1: [ 387670.0, 5819090.0, 4.0 ] |
| 183 | coordinates2: [ 387676.0, 5819139.0, 1.0 ] |
| 184 | coordinates3: [ 387630.0, 5819065.0, 41.0 ] |
| 185 | coordinates4: [ 387270.0, 5819191.0, 8.5 ] |
| 186 | |
| 187 | # Give the variables that shall be sampled. Note, there is a |
| 188 | # number of default variables that will be always sampled, which is: |
| 189 | # u, v, w, theta and hus (mixing ratio). |
| 190 | # On top of these, you can individually prescribe further variables |
| 191 | # for each site. In order to prescribe further variables, please |
| 192 | # follow the naming convention defined in the [UC]2 data standard. |
| 193 | |
| 194 | vars_to_be_measured1: [ "u", "v", "w", "theta", "rlus", "rsus" ] |
| 195 | vars_to_be_measured2: [ "rnds", "wdir" ] |
| 196 | vars_to_be_measured3: [ "us" ] |
| 197 | vars_to_be_measured4: [ "utheta", "vtheta", "wtheta", "wspeed" ] |
| 198 | }}} |
| 199 | |
| 200 | A list of variables that are currently supported and their naming convention can be found [../../../virtual_measurement_parameters here]. |