static VikLayerParamData type_default ( void ) { return VIK_LPD_UINT ( DEM_TYPE_HEIGHT ); }
static VikLayerParamData source_default ( void ) { return VIK_LPD_UINT ( DEM_SOURCE_SRTM ); }
static VikLayerParamData convert_to_display ( VikLayerParamData value ) { // From seconds into days return VIK_LPD_UINT ( value.u / 86400 ); }
static VikLayerParamData convert_to_internal ( VikLayerParamData value ) { // From days into seconds return VIK_LPD_UINT ( 86400 * value.u ); }
static VikLayerParamData line_thickness_default ( void ) { return VIK_LPD_UINT ( 3 ); }