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.DataServer
cache as aos.PathLike
object.See also
- gplately.auxiliary.get_gplot(model: str | ~plate_model_manager.plate_model.PlateModel, model_repo_dir: str = './', time: int | float = 0, plot_engine: ~gplately.mapping.plot_engine.PlotEngine = <gplately.mapping.cartopy_plot.CartopyPlotEngine object>) PlotTopologies [source]
Return a
gplately.PlotTopologies
object for a given model name orgplately.PlateModel
object.- Parameters:
model (str or PlateModel) – model name or a
gplately.PlateModel
objectmodel_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()
- Returns:
a
gplately.PlotTopologies
object- Return type:
See also
- gplately.auxiliary.get_plate_reconstruction(model: str | PlateModel, model_repo_dir: str = './')[source]
Return a
gplately.PlateReconstruction
object for a given model name orgplately.PlateModel
object.- Parameters:
model (str or PlateModel) – model name or a
gplately.PlateModel
objectmodel_repo_dir (str, default="./") – the folder in which you would like to keep the model files
- Returns:
a
gplately.PlateReconstruction
object- Return type:
See also