diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 0416b506..21f4dc22 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -44,7 +44,7 @@ jobs: - os: windows-2019 cibw_archs: "AMD64 ARM64" artifact_name: "win" - - os: macos-12 + - os: macos-13 cibw_archs: "x86_64 arm64" artifact_name: "mac" - os: "ubuntu-20.04" diff --git a/pyresample/_formatting_html.py b/pyresample/_formatting_html.py index d015f298..4203760e 100644 --- a/pyresample/_formatting_html.py +++ b/pyresample/_formatting_html.py @@ -190,6 +190,10 @@ def proj_area_attrs_section(area: 'geom.AreaDefinition') -> str: # noqa F821 sorted(proj_dict.keys())])) area_units = proj_dict.get("units", "") + resolution_bp_name = "Resolution x/y" + if proj_dict.get("proj") == "geos": + resolution_bp_name += " (SSP)" + attrs_icon = _icon("icon-file-text2") area_attrs = ("
" @@ -197,7 +201,7 @@ def proj_area_attrs_section(area: 'geom.AreaDefinition') -> str: # noqa F821 f"
Description
{area.description}
" f"
Projection
{proj_str}
" f"
Width/Height
{area.width}/{area.height} Pixel
" - f"
Resolution x/y (SSP)
{resolution_str} {area_units}
" + f"
{resolution_bp_name}
{resolution_str} {area_units}
" f"
Extent (ll_x, ll_y, ur_x, ur_y)
" f"
{tuple(round(float(x), 4) for x in area.area_extent)}
" "
"