from_cf

static Equi7Grid_projection.from_cf(in_cf: dict, ellipsoidal_cs: Any | None = None, cartesian_cs: Any | None = None, vertical_cs: Any | None = None) CRS

New in version 2.2.0.

New in version 3.0.0: ellipsoidal_cs, cartesian_cs, vertical_cs

This converts a Climate and Forecast (CF) Grid Mapping Version 1.8 dict to a pyproj.crs.CRS object.

build_crs_cf

Parameters:
  • in_cf (dict) – CF version of the projection.

  • ellipsoidal_cs (Any, optional) – Input to create an Ellipsoidal Coordinate System. Anything accepted by pyproj.crs.CoordinateSystem.from_user_input() or an Ellipsoidal Coordinate System created from coordinate_system.

  • cartesian_cs (Any, optional) – Input to create a Cartesian Coordinate System. Anything accepted by pyproj.crs.CoordinateSystem.from_user_input() or pyproj.crs.coordinate_system.Cartesian2DCS.

  • vertical_cs (Any, optional) – Input to create a Vertical Coordinate System accepted by pyproj.crs.CoordinateSystem.from_user_input() or pyproj.crs.coordinate_system.VerticalCS

Return type:

CRS