|
2 | 2 |
|
3 | 3 |
|
4 | 4 | %% GA_VALIDATE_GRIDDED_EXPORT_VS_SEDTRAPS: match gridded export product with the CCE-LTER sediment trap dataset |
5 | | -% This function matches gridded GA products (K20 and GA) with the CCE-LTER dataset. |
6 | | -% Outputs are compared against CCE_SedTrap_Data.csv (differences are due to precision in the csv file). |
| 5 | +% This function matches gridded export products (EF-OC and GA) with the CCE-LTER dataset, |
| 6 | +% and reproduces Fig. 2b & c in Messié et al. (2025) as well as results from Table 1. |
| 7 | +% Outputs are compared against CCE_SedTrap_Data.csv. |
7 | 8 | % |
8 | 9 | % ga_validate_gridded_export_vs_SedTraps |
| 10 | +% |
| 11 | +% Monique Messié, 2024 |
9 | 12 |
|
10 | 13 |
|
11 | 14 |
|
|
131 | 134 | pos(3)=12; pos(4)=7; set(gcf,'Position',pos) |
132 | 135 | set(gcf,'PaperPositionMode','Auto','PaperUnits','Centimeters','PaperSize',[pos(3), pos(4)]) |
133 | 136 | fontsize=7; |
134 | | -axes('Position',[0.1 0.27 0.37 0.7],'FontSize',fontsize), hold on |
| 137 | +axes('Position',[0.08 0.27 0.4 0.7],'FontSize',fontsize), hold on |
135 | 138 | for ipts=find(iok)' |
136 | 139 | plot([SedTrap.Carbon_flux_corr_mgm2day(ipts) SedTrap.Carbon_flux_corr_mgm2day(ipts)],... |
137 | 140 | [SedTrap.export_EFOC_mgm2day(ipts) SedTrap.GAgridded_CZeu_mgm2day(ipts)],'Color',[0.7 0.7 0.7]) |
|
142 | 145 | plot(xlim,xlim,'k') |
143 | 146 | xlabel({'{\it In situ} Zeu export [mg m^{-2} d^{-1}]'}), ylabel('Gridded export products [mg m^{-2} d^{-1}]') |
144 | 147 | legend([h1,h2],{'EF-OC','GA C_{Zeu}'},'FontSize',fontsize,'Location','northwest') |
145 | | -axes('Position',[0.6 0.27 0.37 0.7],'FontSize',fontsize), hold on |
| 148 | +axes('Position',[0.58 0.27 0.4 0.7],'FontSize',fontsize), hold on |
146 | 149 | ibelow30m=SedTrap.Zeu_m>=30; |
147 | 150 | errSat=abs(SedTrap.export_EFOC_mgm2day*b(1)-SedTrap.GAgridded_CZeu_mgm2day*b(2))*sqrt(2); |
148 | 151 | for ipts=find(iok)' |
|
160 | 163 | plot(xlim,xlim,'k') |
161 | 164 | xlabel('{\it In situ} Zeu export [mgC m^{-2} d^{-1}]'), ylabel('Combined satellite export [mgC m^{-2} d^{-1}]') |
162 | 165 | hbar4=colorbar('SouthOutside'); hbar4.Title.String='Drift [km]'; |
163 | | - hbar4.Position=[0.6 0.06 0.37 0.03]; |
| 166 | + hbar4.Position=[0.58 0.06 0.4 0.03]; |
164 | 167 | print('-djpeg','-r300','figures/Fig2bc.jpg') |
165 | 168 |
|
166 | 169 |
|
|
0 commit comments