-
Notifications
You must be signed in to change notification settings - Fork 243
Closed
Labels
feature requestNew feature wantedNew feature wantedhelp wantedHelping hands are appreciatedHelping hands are appreciated
Description
Description of the desired feature
Changing gmt defaults in GMT CLI:
gmt set PAR1=value1 PAR2=value2gmt plot ... --PAR1=value1 --PAR2=value2
In pygmt, these two should be:
gmt.set(PAR1=value1, PAR2=value2)gmt.plot(projection="xxx", region="xxx", PAR1=value1, PAR2=value2)
Another way is using dict, e.g. gmt.conf['PAR1']=value1, which seems more pythonic. But we need call gmt set for each assignment. I'm not sure if it's technically possible.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
feature requestNew feature wantedNew feature wantedhelp wantedHelping hands are appreciatedHelping hands are appreciated