| 46 | Should we remove Python code superseded by C-extensions? |
| 47 | Pros: Leaner code and no risk |
| 48 | Cons: Less readable algorithms |
| 49 | |
| 50 | Move py code into files such as quantity_ext.py and have python wrappers with doc strings for all functions. Name the code in extensions _ext and conditional import as usual. |
| 51 | |
| 52 | Generally separate file_format stuff from functionality (and work with a small number of formats) |
| 53 | |
| 54 | |
| 55 | Have a .tms format for straight timeseries, use sww for f(t,x,y). |
| 56 | Modify Interpolation function and file_function accordingly. (Use lwru2.py as test bed) (Done by Ole) |
| 57 | |
| 58 | |
| 59 | |