From b7c91c07caff2fb20f94b027682d01d140820213 Mon Sep 17 00:00:00 2001 From: whitetuft Date: Tue, 12 Mar 2024 12:25:48 +0100 Subject: [PATCH] update citation after the pubblication --- CITATION.cff | 7 +------ README.md | 4 ++-- docs/script_examples/plot_log_dependance_tb.py | 2 +- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index c03ca1d6..191b4b84 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -35,12 +35,7 @@ abstract: >- as it interacts with atmospheric constituents. - Reference: Larosa, S., Cimini, D., Gallucci, D., Nilo, S. - T., and Romano, F.: PyRTlib: an educational Python-based - library for non-scattering atmospheric microwave - Radiative Transfer computations, Geosci. Model Dev. - Discuss. (preprint), https://doi.org/10.5194/gmd-2023-171, - in review, 2023. + Reference: Larosa, S., Cimini, D., Gallucci, D., Nilo, S. T., and Romano, F.: PyRTlib: an educational Python-based library for non-scattering atmospheric microwave radiative transfer computations, Geosci. Model Dev., 17, 2053–2076, https://doi.org/10.5194/gmd-17-2053-2024, 2024. keywords: - atmospheric-modelling - microwave diff --git a/README.md b/README.md index 003764d4..ea9dfd1e 100644 --- a/README.md +++ b/README.md @@ -101,9 +101,9 @@ You can get started with PyRTlib by installing and executing the first radiative ## Cite as -Larosa, S., Cimini, D., Gallucci, D., Nilo, S. T., and Romano, F.: PyRTlib: an educational Python-based library for non-scattering atmospheric microwave Radiative Transfer computations, Geosci. Model Dev. Discuss. (preprint), https://doi.org/10.5194/gmd-2023-171, in review, 2023. +Larosa, S., Cimini, D., Gallucci, D., Nilo, S. T., and Romano, F.: PyRTlib: an educational Python-based library for non-scattering atmospheric microwave radiative transfer computations, Geosci. Model Dev., 17, 2053–2076, https://doi.org/10.5194/gmd-17-2053-2024, 2024. -Larosa, S., Cimini, D., Gallucci, D., Nilo, S. T., & Romano, F. (2023). PyRTlib: a python package for non-scattering line-by-line microwave Radiative Transfer simulations. (Computer software). https://doi.org/10.5281/zenodo.8219145 +Larosa, S., Cimini, D., Gallucci, D., Nilo, S. T., & Romano, F. (2024). PyRTlib: a python package for non-scattering line-by-line microwave Radiative Transfer simulations. (Computer software). https://doi.org/10.5281/zenodo.8219145 ## Contributors diff --git a/docs/script_examples/plot_log_dependance_tb.py b/docs/script_examples/plot_log_dependance_tb.py index 9027631c..022650ad 100644 --- a/docs/script_examples/plot_log_dependance_tb.py +++ b/docs/script_examples/plot_log_dependance_tb.py @@ -61,7 +61,7 @@ axes[0, 1].grid(True, 'both') axes[0, 1].annotate("c)", xy=(0.02, 0.05), xycoords='axes fraction', fontsize=40) -axes[0, 0].set_ylabel('$\Delta T_b$ [K]') +axes[0, 0].set_ylabel('$\Delta T_B$ [K]') axes[0, 0].tick_params(axis='both', direction='in', length=10, width=.5) axes[0, 0].plot(np.log2(m), tb_023, linestyle='--', linewidth=3, color='black') axes[0, 0].plot(np.log2(m), tb_023, marker='+', linestyle='None', color='r', ms=20, markeredgewidth=5)