# ICON
#
# ---------------------------------------------------------------
# Copyright (C) 2004-2026, DWD, MPI-M, DKRZ, KIT, ETH, MeteoSwiss
# Contact information: icon-model.org
# See AUTHORS.TXT for a list of authors
# See LICENSES/ for license information
# SPDX-License-Identifier: BSD-3-Clause
# ---------------------------------------------------------------

# Axes
 xs_horiz_axis_bottom = paxis(
    axis_orientation    :   "horizontal",
    axis_position       :   "bottom",
    axis_type           :   "regular",
    axis_title          :   "on",
    axis_title_colour   :   "black",
    axis_title_height   :   0.5,
    axis_title_quality  :   "high",
    axis_tick_label_height  :   0.4,
    axis_title_text     :   "Latitude"
               )

 if lev_type = "pl" then
   axis_title_text = "Pressure"
   axis_tip_title_text = "hPa"
 else
   axis_title_text = "Model Level"
   axis_tip_title_text = "No"
 end if

 if p_scale = "linear" then
   help_type="regular"
 else
   help_type="logarithmic"
 end if

 xs_vert_axis_log_left = paxis(
    axis_orientation    :   "vertical",
    axis_position       :   "left",
    axis_type           :   help_type,
    axis_title_colour   :   "black",
    axis_title_height   :   0.5,
    axis_title_quality  :   "high",
    axis_title_text     :   axis_title_text,
    axis_tip_title      :   "on",
    axis_tip_title_colour   :   "black",
    axis_tip_title_quality  :   "high",
    axis_tip_title_text     :   axis_tip_title_text,
    axis_tick_positioning   :   "regular",
    axis_tick_label_height  :   0.4,
    axis_tick_label_quality :   "medium"
    )

 xs_vert_axis_log2_left = paxis(
    axis_orientation    :   "vertical",
    axis_position       :   "left",
    axis_type           :   "logarithmic",
    axis_title_colour   :   "black",
    axis_title_height   :   0.5,
    axis_title_quality  :   "high",
    axis_title_text     :   axis_title_text,
    axis_tip_title      :   "on",
    axis_tip_title_colour   :   "black",
    axis_tip_title_quality  :   "high",
    axis_tip_title_text     :   axis_tip_title_text,
 #  axis_tick_positioning   :   "regular",
    axis_tick_label_height  :   0.4,
    axis_tick_label_quality :   "medium"
    )
