Bed Type Classifications

Bed Type Classifications#

Description: Grid of bed classifications.

Dataset:

Aitken, A., Li, L., Kulessa, B., Schroeder, D., Jordan, T., Whittaker, J., Anandakrishnan, S., Dawson, E., Wiens, D., Eisen, O., & Siegert, M. (2023). AntarcticBasins v1.04: Antarcitca’s Sedimentary Basins Distribution and Classification (v1.04) [Data set]. Zenodo. https://doi.org/10.5281/zenodo.7955584

Associated paper:

Aitken, A. R. A., Li, L., Kulessa, B., Schroeder, D., Jordan, T. A., Whittaker, J. M., et al. (2023). Antarctic sedimentary basins and their influence on ice-sheet dynamics. Reviews of Geophysics, 61, e2021RG000767. https://doi.org/10.1029/2021RG000767

[1]:
import polartoolkit as ptk
[2]:
data = ptk.fetch.antarctic_bed_type(
    # available options
    # region,
)
data
[2]:
<xarray.DataArray 'z' (y: 12000, x: 12000)> Size: 576MB
array([[nan, nan, nan, ..., nan, nan, nan],
       [nan, nan, nan, ..., nan, nan, nan],
       [nan, nan, nan, ..., nan, nan, nan],
       ...,
       [nan, nan, nan, ..., nan, nan, nan],
       [nan, nan, nan, ..., nan, nan, nan],
       [nan, nan, nan, ..., nan, nan, nan]],
      shape=(12000, 12000), dtype=float32)
Coordinates:
  * x        (x) float64 96kB -3e+06 -2.999e+06 -2.999e+06 ... 2.999e+06 3e+06
  * y        (y) float64 96kB 3e+06 2.999e+06 2.999e+06 ... -2.999e+06 -3e+06
Attributes:
    AREA_OR_POINT:  Area
[3]:
fig = ptk.basemap(
    title="Bed Type",
    coast=True,
    hemisphere="south",
    bed_type=True,
    region=ptk.regions.antarctica,
    bed_type_legend_loc="jBL",
)

fig.show(dpi=200)
../../_images/datasets_antarctica_bed_type_3_0.png
[ ]: