****************************************************************************************************
****************************************************************************************************
* PROGRAM: figure_axes.sas
* Created (mm/dd/yyyy): 09/08/2021
*--------------------------------------------------------------------------------------------------
* PURPOSE: The macro computes X and Y axis tick marks
* - figuresub: figuresub from figurefile
* - where: where clause to restrict figure data
* - xtickmarks: macro variable name for x tick mark list
* - ytickmarks: macro variable name for y tick mark list
*--------------------------------------------------------------------------------------------------
* Sentinel Coordinating Center
* info@sentinelsystem.org
***************************************************************************************************;
%macro figure_axes(data=, figure=, figuresub=, where=, xtickmarks=, ytickmarks=);
%put =====> MACRO CALLED: figure_axes;
/*select min and max day from input dataset*/
select min(day), max(day) into :datamin, :datamax
from &data(where=(&where.));
/*Extract axis parameters from figurefile*/
set figurefile(where=(figure="&figure." and figuresub="&figuresub"));
/*set min/max defaults if missing*/
if missing(xmin) then xmin = &datamin.;
if missing(xmax) then xmax = &datamax.;
if missing(ymin) then ymin = 0;