@@ -953,7 +953,7 @@ def open_virtual_file(self, family, geometry, direction, data):
953
953
... lib.put_vector(dataset, column=0, vector=x)
954
954
... lib.put_vector(dataset, column=1, vector=y)
955
955
... # Add the dataset to a virtual file
956
- ... vfargs = (family, geometry, 'GMT_IN|GMT_IS_REFERENCE ', dataset)
956
+ ... vfargs = (family, geometry, 'GMT_IN', dataset)
957
957
... with lib.open_virtual_file(*vfargs) as vfile:
958
958
... # Send the output to a temp file so that we can read it
959
959
... with GMTTempFile() as ofile:
@@ -1085,7 +1085,7 @@ def virtualfile_from_vectors(self, *vectors):
1085
1085
self .put_vector (dataset , column = col , vector = array )
1086
1086
1087
1087
with self .open_virtual_file (
1088
- family , geometry , "GMT_IN|GMT_IS_REFERENCE " , dataset
1088
+ family , geometry , "GMT_IN" , dataset
1089
1089
) as vfile :
1090
1090
yield vfile
1091
1091
@@ -1168,7 +1168,7 @@ def virtualfile_from_matrix(self, matrix):
1168
1168
self .put_matrix (dataset , matrix )
1169
1169
1170
1170
with self .open_virtual_file (
1171
- family , geometry , "GMT_IN|GMT_IS_REFERENCE " , dataset
1171
+ family , geometry , "GMT_IN" , dataset
1172
1172
) as vfile :
1173
1173
yield vfile
1174
1174
@@ -1245,7 +1245,7 @@ def virtualfile_from_grid(self, grid):
1245
1245
family , geometry , mode = "GMT_CONTAINER_ONLY" , ranges = region , inc = inc
1246
1246
)
1247
1247
self .put_matrix (gmt_grid , matrix )
1248
- args = (family , geometry , "GMT_IN|GMT_IS_REFERENCE " , gmt_grid )
1248
+ args = (family , geometry , "GMT_IN" , gmt_grid )
1249
1249
with self .open_virtual_file (* args ) as vfile :
1250
1250
yield vfile
1251
1251
0 commit comments