|
88 | 88 | np.int16: "GMT_SHORT", |
89 | 89 | np.int32: "GMT_INT", |
90 | 90 | np.int64: "GMT_LONG", |
91 | | - np.longlong: "GMT_LONG", |
92 | 91 | np.uint8: "GMT_UCHAR", |
93 | 92 | np.uint16: "GMT_USHORT", |
94 | 93 | np.uint32: "GMT_UINT", |
95 | 94 | np.uint64: "GMT_ULONG", |
96 | | - np.ulonglong: "GMT_ULONG", |
97 | 95 | np.float32: "GMT_FLOAT", |
98 | 96 | np.float64: "GMT_DOUBLE", |
99 | 97 | np.timedelta64: "GMT_LONG", |
@@ -950,9 +948,8 @@ def put_vector(self, dataset: ctp.c_void_p, column: int, vector: np.ndarray): |
950 | 948 | The dataset must be created by :meth:`pygmt.clib.Session.create_data` first with |
951 | 949 | ``family="GMT_IS_DATASET|GMT_VIA_VECTOR"``. |
952 | 950 |
|
953 | | - Not all numpy dtypes are supported, only: int8, int16, int32, int64, longlong, |
954 | | - uint8, uint16, uint32, uint64, ulonglong, float32, float64, str\_, datetime64, |
955 | | - and timedelta64. |
| 951 | + Not all numpy dtypes are supported, only: int8, int16, int32, int64, uint8, |
| 952 | + uint16, uint32, uint64, float32, float64, str\_, and datetime64. |
956 | 953 |
|
957 | 954 | .. warning:: |
958 | 955 | The numpy array must be C contiguous in memory. Use |
@@ -1063,8 +1060,8 @@ def put_matrix(self, dataset: ctp.c_void_p, matrix: np.ndarray, pad: int = 0): |
1063 | 1060 | The dataset must be created by :meth:`pygmt.clib.Session.create_data` first with |
1064 | 1061 | ``family="GMT_IS_DATASET|GMT_VIA_MATRIX"``. |
1065 | 1062 |
|
1066 | | - Not all numpy dtypes are supported, only: int8, int16, int32, int64, longlong, |
1067 | | - uint8, uint16, uint32, uint64, ulonglong, float32, and float64. |
| 1063 | + Not all numpy dtypes are supported, only: int8, int16, int32, int64, uint8, |
| 1064 | + uint16, uint32, uint64, float32, and float64. |
1068 | 1065 |
|
1069 | 1066 | .. warning:: |
1070 | 1067 | The numpy array must be C contiguous in memory. Use |
|
0 commit comments