oggm.GlacierDirectory

class oggm.GlacierDirectory(rgi_entity, base_dir=None, reset=False, from_tar=False, delete_tar=False)[source]

Organizes read and write access to the glacier’s files.

It handles a glacier directory created in a base directory (default is the “per_glacier” folder in the working directory). The role of a GlacierDirectory is to give access to file paths and to I/O operations. The user should not care about where the files are located, but should know their name (see cfg.BASENAMES).

If the directory does not exist, it will be created.

See Glacier directories for more information.

Attributes
dirstr

path to the directory

rgi_idstr

The glacier’s RGI identifier

glims_idstr

The glacier’s GLIMS identifier (when available)

rgi_area_km2float

The glacier’s RGI area (km2).

cenlon, cenlatfloat

The glacier centerpoint’s lon/lat

rgi_dateint

The RGI’s BGNDATE year attribute if available. Otherwise, defaults to the median year for the RGI region

rgi_regionstr

The RGI region name

namestr

The RGI glacier name (if Available)

glacier_typestr

The RGI glacier type (‘Glacier’, ‘Ice cap’, ‘Perennial snowfield’, ‘Seasonal snowfield’)

terminus_typestr

The RGI terminus type (‘Land-terminating’, ‘Marine-terminating’, ‘Lake-terminating’, ‘Dry calving’, ‘Regenerated’, ‘Shelf-terminating’)

is_tidewaterbool

Is the glacier a caving glacier?

inversion_calving_ratefloat

Calving rate used for the inversion

__init__(self, rgi_entity, base_dir=None, reset=False, from_tar=False, delete_tar=False)[source]

Creates a new directory or opens an existing one.

Parameters
rgi_entitya geopandas.GeoSeries or str

glacier entity read from the shapefile (or a valid RGI ID if the directory exists)

base_dirstr

path to the directory where to open the directory. Defaults to cfg.PATHS[‘working_dir’] + /per_glacier/

resetbool, default=False

empties the directory at construction (careful!)

from_tarstr or bool, default=False

path to a tar file to extract the gdir data from. If set to True, will check for a tar file at the expected location in base_dir.

delete_tarbool, default=False

delete the original tar file after extraction.

Methods

__init__(self, rgi_entity[, base_dir, …])

Creates a new directory or opens an existing one.

add_to_diagnostics(self, key, value)

Write a key, value pair to the gdir’s runtime diagnostics.

create_gridded_ncdf_file(self, fname)

Makes a gridded netcdf file template.

get_diagnostics(self)

Read the gdir’s runtime diagnostics.

get_error_log(self)

Reads the directory’s log file to find the invalid task (if any).

get_filepath(self, filename[, delete, …])

Absolute path to a specific file.

get_inversion_flowline_hw(self)

Shortcut function to read the heights and widths of the glacier.

get_ref_length_data(self)

Get the glacier length data from P.

get_ref_mb_data(self)

Get the reference mb data from WGMS (for some glaciers only!).

get_ref_mb_profile(self)

Get the reference mb profile data from WGMS (if available!).

get_task_status(self, task_name)

Opens this directory’s log file to see if a task was already run.

has_file(self, filename)

Checks if a file exists.

log(self, task_name[, err])

Logs a message to the glacier directory.

read_json(self, filename[, filesuffix])

Reads a JSON file located in the directory.

read_pickle(self, filename[, …])

Reads a pickle located in the directory.

read_shapefile(self, filename[, filesuffix])

Reads a shapefile located in the directory.

read_text(self, filename[, filesuffix])

Reads a text file located in the directory.

set_ref_mb_data(self[, mb_df])

Adds reference mass-balance data to this glacier.

write_json(self, var, filename[, filesuffix])

Writes a variable to a pickle on disk.

write_monthly_climate_file(self, time, prcp, …)

Creates a netCDF4 file with climate data timeseries.

write_pickle(self, var, filename[, …])

Writes a variable to a pickle on disk.

write_shapefile(self, var, filename[, …])

Writes a variable to a shapefile on disk.

Attributes

grid

A salem.Grid handling the georeferencing of the local grid

rgi_area_km2

The glacier’s RGI area (km2).

rgi_area_m2

The glacier’s RGI area (m2).