# HG changeset patch # User Ioannis # Date 1599487918 -10800 # Node ID e7a6a5f6cacad11b6e8ada1b5fe54713ccc16541 # Parent 79a75340ae30224b90f00898b7fc864a30d798a6 New KIT system configuration diff -r 79a75340ae30 -r e7a6a5f6caca .gitignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.gitignore Mon Sep 07 17:11:58 2020 +0300 @@ -0,0 +1,12 @@ +*.pyc +*.py~ +*.rst~ +readme.md~ +*.orig +.idea/* +atmospheric_lidar\.egg-info/ +*.nc +build/* +dist/* +docs/_build/html/* +docs/_build/doctrees/* diff -r 79a75340ae30 -r e7a6a5f6caca .hgignore --- a/.hgignore Mon Jun 08 23:24:17 2020 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,14 +0,0 @@ -syntax: glob -*.pyc -*.py~ -*.rst~ -re:^readme\.md~$ -*.orig -.idea/* -re:^atmospheric_lidar\.egg-info/ -*.nc -re:^atmospheric_lidar_reader\.egg-info/ -re:^build/ -re:^dist/ -re:^docs/_build/html/ -re:^docs/_build/doctrees/ diff -r 79a75340ae30 -r e7a6a5f6caca atmospheric_lidar/systems/kit/kit_netcdf_parameters.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/atmospheric_lidar/systems/kit/kit_netcdf_parameters.py Mon Sep 07 17:11:58 2020 +0300 @@ -0,0 +1,33 @@ +general_parameters = \ +{'System': '\'KASCAL\'', + 'Laser_Pointing_Angle': 0, + 'Molecular_Calc': 0, + 'Call sign': 'imk', } + +channel_parameters = \ +{'BT0': {'channel_ID': 1561, + 'Background_Low': 50000, + 'Background_High': 60000, + 'LR_Input': 1,}, + 'BC0': {'channel_ID': 1562, + 'Background_Low': 50000, + 'Background_High': 60000, + 'LR_Input': 1,}, + 'BT1': {'channel_ID': 1563, + 'Background_Low': 50000, + 'Background_High': 60000, + 'LR_Input': 1,}, + 'BC1': {'channel_ID': 1564, + 'Background_Low': 50000, + 'Background_High': 60000, + 'LR_Input': 1,}, + 'BT2': {'channel_ID': 1565, + 'Background_Low': 50000, + 'Background_High': 60000, + 'LR_Input': 1,}, + 'BC2': {'channel_ID': 1566, + 'Background_Low': 50000, + 'Background_High': 60000, + 'LR_Input': 1,}, + } +