plot_mean_residuals.pl
author A.M. Thurnherr <athurnherr@yahoo.com>
Thu, 10 Mar 2016 11:25:56 +0000
changeset 37 2c4479351544
parent 34 e550db661c17
child 41 6bddb82924e3
permissions -rw-r--r--
V1.2beta2

#======================================================================
#                    P L O T _ M E A N _ R E S I D U A L S . P L 
#                    doc: Tue Jul 28 13:21:09 2015
#                    dlm: Tue Jan 26 20:13:56 2016
#                    (c) 2015 A.M. Thurnherr
#                    uE-Info: 16 33 NIL 0 0 72 2 2 4 NIL ofnI
#======================================================================

# HISTORY:
#	Jul 28, 2015: - created from [LWplot_BR]
#	Jul 29, 2015: - finished
#	Jul 30, 2015: - added bin_tics
#				  - added outGrid_* support
#	Jan 22, 2015: - many changes
#				  - added quality assessment label
#	Jan 25, 2016: - added return on no data

require "$ANTS/libGMT.pl";

sub plot_mean_residuals($)
{
	my($pfn) = @_;

	return unless ($P{BR_max_bin});

	my($xmin) = -0.05;
	my($xmax) =  0.05;
	my($ymin) =  0.5;
	my($ymax) = $P{BR_max_bin} + 0.5;

	my($R) = "-R$xmin/$xmax/$ymin/$ymax";
	GMT_begin($pfn,'-JX10/-10',$R,'-P');

	if ($outGrid_firstBin>$LADCP_firstBin || $outGrid_lastBin<$LADCP_lastBin) {		# mark used bins
		GMT_psxy('-G200 -M -L');
		printf(GMT ">\n%f %f\n%f %f\n%f %f\n%f %f\n",
			$xmin,$LADCP_firstBin-0.5,
			$xmax,$LADCP_firstBin-0.5,
			$xmax,$outGrid_firstBin-0.5,
			$xmin,$outGrid_firstBin-0.5)
				if ($outGrid_firstBin>$LADCP_firstBin);
		printf(GMT ">\n%f %f\n%f %f\n%f %f\n%f %f\n",
			$xmin,$LADCP_lastBin+0.5,
			$xmax,$LADCP_lastBin+0.5,
			$xmax,$outGrid_lastBin+0.5,
			$xmin,$outGrid_lastBin+0.5)
				if ($outGrid_lastBin<$LADCP_lastBin);
	}

	GMT_psxy('-W1');																# plot zero line
	printf(GMT "0 $ymin\n0 $ymax\n");

	GMT_psxy('-Mn -W4/coral');
		for (my($bin)=$LADCP_firstBin; $bin<@dc_bres; $bin++) {						# SKIP FIRST BIN
			next if ($bin+1<$outGrid_firstBin || $bin+1>$outGrid_lastBin);
			next unless ($dc_bres_nsamp[$bin] >= $dc_bres_max_nsamp/3);
			printf(GMT "%f %d\n",$dc_avg_bres[$bin],$bin+1);
        }
	GMT_psxy('-Mn -Ex0.2/4/coral');
		for (my($bin)=$LADCP_firstBin-1; $bin<@dc_bres; $bin++) {
			printf(GMT "%f %d %f\n",
							$dc_avg_bres[$bin],
							$bin+1,
							($dc_bres_nsamp[$bin] > 1) ?
								$dc_sig_bres[$bin]/sqrt($dc_bres_nsamp[$bin]-1) : 0);
        }
	GMT_psxy('-Mn -W4/SeaGreen');
		for (my($bin)=$LADCP_firstBin; $bin<@uc_bres; $bin++) {						# SKIP FIRST BIN
			next if ($bin+1<$outGrid_firstBin || $bin+1>$outGrid_lastBin);
			next unless ($uc_bres_nsamp[$bin] >= $uc_bres_max_nsamp/3);
			printf(GMT "%f %d\n",$uc_avg_bres[$bin],$bin+1);
        }
	GMT_psxy('-Mn -Ex0.2/4/SeaGreen');
		for (my($bin)=$LADCP_firstBin-1; $bin<@uc_bres; $bin++) {
			printf(GMT "%f %d %f\n",
							$uc_avg_bres[$bin],
							$bin+1,
							($uc_bres_nsamp[$bin] > 1) ?
								$uc_sig_bres[$bin]/sqrt($uc_bres_nsamp[$bin]-1) : 0);
        }

	GMT_unitcoords();																	# LABELS

	GMT_pstext('-Gblue -N');															# profile id
		print(GMT "0.0 -0.03 14 0 0 BL $P{out_basename} $P{run_label}\n");

	GMT_pstext('-Gcoral');																# rms residuals
		print(GMT "0.01 0.93 12 0 0 BL dc\n");
	if ($dc_bres_rms >= 0.005) { 		GMT_pstext('-Gwhite -Wred'); }
	elsif ($dc_bres_rms >= 0.001) { 	GMT_pstext('-Gblack -Wyellow'); }
	else {						GMT_pstext('-Gblack -Wgreen'); }
		printf(GMT "0.10 0.93 12 0 0 BL %.1f mm/s rms\n",1000*$dc_bres_rms);

	GMT_pstext('-GSeaGreen');
		print(GMT "0.01 0.98 12 0 0 BL uc\n");
	if ($uc_bres_rms >= 0.005) { 		GMT_pstext('-Gwhite -Wred'); }
	elsif ($uc_bres_rms >= 0.001) { 	GMT_pstext('-Gblack -Wyellow'); }
	else {						GMT_pstext('-Gblack -Wgreen'); }
		printf(GMT "0.10 0.98 12 0 0 BL %.1f mm/s rms\n",1000*$uc_bres_rms);

	my($bin_tics) = ($ymax <= 20) ? 'f1a1' : 'f1a2';
	GMT_setR($R);																		# FINISH PLOT
	GMT_end("-Bf0.005a0.02:'Residual Vertical Velocity [m/s]':/$bin_tics:'Bin [#]':WeSn");
}

1; # return true on require