Last modified by makuadm on 2026-01-07 06:21

From version 21.1
edited by cpassow
on 2022-04-05 14:40
Change comment: There is no comment for this version
To version 17.1
edited by cpassow
on 2022-04-04 11:38
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,11 +7,5 @@
1 -test
2 -
3 -----
4 -
5 -=== TODO ===
6 -
7 7  (% style="list-style-type: square;" %)
8 -* Short descriptions including Links:   → as Text\\
2 +* Short descriptions including Links:
9 9  (% style="list-style-type: square;" %)
10 10  ** GPFS
11 11  ** JupyterHub
... ... @@ -13,42 +13,38 @@
13 13  
14 14  \\
15 15  
16 -* distribution
17 -** channel  (where to host?)
18 -** environment file (repository with examples)
19 -
20 -\\
21 -
22 22  (% style="list-style-type: square;" %)
23 -* Documentation
11 +* Links Repository
24 24  (% style="list-style-type: square;" %)
25 -** here VS repository vs sphinx
13 +** including Method Description?
26 26  
27 27  \\
28 28  
29 29  (% style="list-style-type: square;" %)
30 -* Binder
31 -(% style="list-style-type: square;" %)
32 -** examples with Stefan
18 +* Links to Binder
33 33  
34 34  \\
35 35  
36 36  (% style="list-style-type: square;" %)
37 37  * Screencast
38 -(% style="list-style-type: square;" %)
39 -** login in jupyter hub
40 -** login maxwell display
41 -** use slix
42 -** use hdfview plugin in jupterLab
43 -** create conda env with flashh5
44 44  
45 45  \\
46 46  
47 47  \\
48 48  
49 -----
29 +Questions:
50 50  
51 -==== under review ====
31 +(% style="list-style-type: square;" %)
32 +* for whom
33 +* where Maxwell / local / extern
34 +* distribution\\
35 +(% style="list-style-type: square;" %)
36 +** channel?
37 +(% style="list-style-type: square;" %)
38 +*** where official hosted (DESY, privat, conda-forge)
39 +** enviroment?
40 +(% style="list-style-type: square;" %)
41 +*** via files / already created?
52 52  
53 53  \\
54 54  
... ... @@ -72,11 +72,10 @@
72 72  {{code language="py" title="moved to repository?"}}
73 73  class RunDirectory:
74 74  
75 - def get_run_table(): # more or less information? RunComment | Number of Files | start & stop time ?
65 + def get_run_table(): # more or less information? RunComment | Number of Files
76 76   ...
77 77  
78 - def get_run(daq, run_number): # daq is not needed!
79 -
68 + def get_run(daq, run_number): # daq is not needed
80 80   ...
81 81  
82 82  
... ... @@ -85,7 +85,7 @@
85 85   def get_files():
86 86   ...
87 87  
88 - def get_channels(): # of file #1
77 + def get_channels(): # of file #1?
89 89   ...
90 90  
91 91   def get_start_time(): # better as attribute?
... ... @@ -93,8 +93,11 @@
93 93  
94 94   def get_stop_time(): # which? | better as attribute?
95 95   ...
85 +
86 +### for following methods to restrict number of files or separate method
87 +### e.g. create_df(files)
96 96  
97 - def to_df(daq_map): # to_df(daq_map, slice) slice=[0:4] -> throw Exception
89 + def to_df(daq_map):
98 98   ...
99 99  
100 100   def to_series(channel):
... ... @@ -109,7 +109,7 @@
109 109  run.to_series(daq_adr or daq_map) # on channel only?
110 110  run.to_array(daq_adr) # on channel only?
111 111  
112 -## interesting?
104 +## is this interesting?
113 113  # run.to_dask(daq_map)
114 114  # run.to_xarray(daq_map)
115 115  {{/code}}