gplately.auxiliary
A set of helper functions designed to streamline the use of GPlately’s functionalities, minimizing the coding effort required from users.
Functions
Return the path to the |
|
|
Return a |
|
Return a |
|
A helper function to return a |
- gplately.auxiliary.get_data_server_cache_path()[source]
Return the path to the
gplately.DataServercache as aos.PathLikeobject.See also
- gplately.auxiliary.get_gplot(model: str | PlateModel, model_repo_dir: str = './', time: int | float = 0, plot_engine: PlotEngine = <gplately.mapping.cartopy_plot.CartopyPlotEngine object>, default_anchor_plate_id: int = 0) PlotTopologies[source]
Return a
gplately.PlotTopologiesobject for a given model name orgplately.PlateModelobject.- Parameters:
model (str or PlateModel) – model name or a
gplately.PlateModelobjectmodel_repo_dir (str, default="./") – the folder in which you would like to keep the model files
time (int or float, default=0) – the reconstruction age/time
plot_engine (PlotEngine, default=CartopyPlotEngine()) – two choices - CartopyPlotEngine() or PygmtPlotEngine()
default_anchor_plate_id (int, default=0) – the default anchor plate ID to use to create pygplates.RotationModel.
- Returns:
a
gplately.PlotTopologiesobject- Return type:
See also
- gplately.auxiliary.get_plate_reconstruction(model: str | PlateModel, model_repo_dir: str = './', default_anchor_plate_id: int = 0) PlateReconstruction[source]
Return a
gplately.PlateReconstructionobject for a given model name orgplately.PlateModelobject.- Parameters:
model (str or PlateModel) – model name or a
gplately.PlateModelobjectmodel_repo_dir (str, default="./") – the folder in which you would like to keep the model files
default_anchor_plate_id (int, default=0) – the default anchor plate ID to use to create pygplates.RotationModel.
- Returns:
a
gplately.PlateReconstructionobject- Return type:
See also