pygmt.clib.Session.create

Session.create(name)[source]

Create a new GMT C API session.

This is required before most other methods of gmt.clib.Session can be called.

Warning

Usage of Session as a context manager in a with block is preferred over calling create and destroy manually.

Calls GMT_Create_Session and generates a new GMTAPI_CTRL struct, which is a ctypes.c_void_p pointer. Sets the session_pointer attribute to this pointer.

Remember to terminate the current session using gmt.clib.Session.destroy before creating a new one.

Parameters:
name : str

A name for this session. Doesn’t really affect the outcome.