Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clib.Session: Wrap the GMT_Get_Common API function #2500

Merged
merged 8 commits into from
Apr 21, 2023
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 91 additions & 0 deletions pygmt/clib/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,97 @@ def get_default(self, name):

return value.value.decode()

def get_common(self, option):
weiji14 marked this conversation as resolved.
Show resolved Hide resolved
"""
Inquire if a GMT common option has been set and return its current
value if possible.

Parameters
----------
option : str
The GMT common option to check. Valid options are ``"B"``, ``"I"``,
``"J"``, ``"R"``, ``"U"``, ``"V"``, ``"X"``, ``"Y"``, ``"a"``,
``"b"``, ``"f"``, ``"g"``, ``"h"``, ``"i"``, ``"n"``, ``"o"``,
``"p"``, ``"r"``, ``"s"``, ``"t"``, and ``":"``.

Returns
-------
value : bool, int, float, or numpy.ndarray
Whether the option was set or its value.

If the option was not set, return ``False``. Otherwise,
the return value depends on the choice of the option.

- options ``"B"``, ``"J"``, ``"U"``, ``"g"``, ``"n"``, ``"p"``,
and ``"s"``: return ``True``
seisman marked this conversation as resolved.
Show resolved Hide resolved
- ``"I"``: 2-element array for the increments (float)
- ``"R"``: 4-element array for the region (float)
- ``"V"``: the verbose level (int)
- ``"X"``: the xshift (float)
- ``"Y"``: the yshift (float)
- ``"a"``: geometry of the dataset (int)
- ``"b"``: the option was set for input or output (int)
- ``"f"``: the option was set for input or output (int)
seisman marked this conversation as resolved.
Show resolved Hide resolved
seisman marked this conversation as resolved.
Show resolved Hide resolved
- ``"h"``: whether to delete existing header records (int)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking at https://docs.generic-mapping-tools.org/6.4/gmt.html#h-full, is this just checking whether -h+d was set?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes.

- ``"i"``: number of input columns (int)
- ``"o"``: number of output columns (int)
- ``"r"``: registration type (int)
- ``"t"``: 2-element array for the transparency (float)
- ``":"``: the option was set for input or output (int)
seisman marked this conversation as resolved.
Show resolved Hide resolved

Examples
--------
>>> with Session() as lib:
... lib.call_module("basemap", "-R0/10/10/15 -JX5i/2.5i -Baf -Ve")
... region = lib.get_common("R")
... projection = lib.get_common("J")
... timestamp = lib.get_common("U")
... verbose = lib.get_common("V")
... lib.call_module("plot", "-T -Xw+1i -Yh-1i")
... xshift = lib.get_common("X") # xshift/yshift are in inches
weiji14 marked this conversation as resolved.
Show resolved Hide resolved
... yshift = lib.get_common("Y")
...
>>> print(region, projection, timestamp, verbose, xshift, yshift)
[ 0. 10. 10. 15.] True False 3 6.0 1.5
>>> with Session() as lib:
... lib.call_module("basemap", "-R0/10/10/15 -JX5i/2.5i -Baf")
... lib.get_common("A")
...
Traceback (most recent call last):
...
pygmt.exceptions.GMTInvalidInput: Unknown GMT common option flag 'A'.
"""
if option not in "BIJRUVXYabfghinoprst:":
raise GMTInvalidInput(f"Unknown GMT common option flag '{option}'.")

c_get_common = self.get_libgmt_func(
"GMT_Get_Common",
argtypes=[ctp.c_void_p, ctp.c_uint, ctp.POINTER(ctp.c_double)],
restype=ctp.c_int,
)
value = np.empty(6) # numpy array to store the value of the option
status = c_get_common(
self.session_pointer,
ord(option),
value.ctypes.data_as(ctp.POINTER(ctp.c_double)),
)

# GMT_NOTSET (-1) means the option is not set
if status == self["GMT_NOTSET"]:
return False
# option is set and no other value is returned
if status == 0:
return True
# option is set and option values (in double type) are returned via the
# 'value' array. 'status' is number of valid values in the array.
if option in "IRt":
return value[:status]
if option in "XY": # only one valid element in the array
return value[0]
# option is set and the option value (in integer type) is returned via
# the function return value (i.e., 'status')
return status

def call_module(self, module, args):
"""
Call a GMT module with the given arguments.
Expand Down