.. _processing: Hints for processing data ========================= .. toctree:: :maxdepth: 1 dkrz .. toctree:: :maxdepth: 1 :caption: Processing tools Intake/index CDO/index Paraview/index dask/index .. toctree:: :maxdepth: 1 :caption: Fantastic grids and how to use them healpix/index playing_with_triangles/index .. tip:: `Further notebooks for ploting FESOM2 and ICON ocean data can be found on github.com. `_ .. tip:: To query the memory footprint of your (processing) jobs, you can use these commands: .. code:: bash # put these function definitions in your .bashrc function maxmem_running() { sstat --format=AveCPU,MaxRSS,AveRSS,JobID -j $1 --allsteps; } function maxmem_terminated() { sacct --format=JobID,JobName,MaxRSS,Elapsed -j $1 ; } # call on a job-id maxmem_running MY_RUNNING_JOB_ID maxmem_terminated MY_TERMINATED_JOB_ID