rebin2 in=input data out=output data factor=2*n mode=simple where n is a multiple/fraction of 2.
Make sure you created the appropriate output series before running the program. For example, su_bala.rebin2up.jsd
none Currently it doesn't have any flags.| in | The input data series. | |
| out | The output series. |
rebin2 in='mdi.fd_M_96m_lev18[2003.10.20/1d]' out='su_bala.rebin2up' scale=4 mode='simple'
rebin2 in='su_bala.rebin2up[2003.10.20/1d]' out='su_bala.rebin2down' scale=0.25 mode='simple'
/**
@defgroup module_template Template Doxygen markup for DRMS modules
@ingroup a_programs
@brief A brief module description goes here
@par Synopsis:
@code
ModuleName [-bdfxGEN_FLAGS] in=<record-set query> out=<out series>
@endcode
The first paragraph of an in-depth description goes here.
This is the second paragraph of the description
@par Flags:
@c -b: Some flag <br>
@c -d: Another flag <br>
@c -f: Yet another flag <br>
@c -x: A fourth flag <br>
@par GEN_FLAGS:
Ubiquitous flags present in every module.
@ref jsoc_main
@param in A record-set query that identifies input records.
@param out The output series.
@par Exit_Status:
Brief description of abnormal, non-zero, exit values.
@par Example:
Brief description of the first example goes here
@code
ModuleName -bx in=<hmi.lev0> out=<hmi.lev03>
@endcode
@par Example:
Brief description of the second example goes here
@code
ModuleName -f in=<hmi.lev0> out=<hmi.lev05>
@endcode
@bug
A description of any bugs goes here.
@par Code:
The doxygen code that makes this page is here:
@verbinclude ./doxygen_moduletemplate.txt
*/
// From here on proceed with module code.
// ....
// ....
int DoIt(void)
{
return 0;
}
1.5.7.1