Hi,
basically, my question is how to translate the regular GMT coast options
-I0/thicker,lightblue -I1/thick,lightblue -I2/thin,lightblue
to the keyword argument style. I tried
rivers=(type=(0,1,2),style=("thicker","thick","thin"),color=("lightblue","lightblue","lightblue"))
but that doesn’t work; I get the error pscoast [WARNING]: Representation of pen color (1/2/) not recognized. Using default. and the rivers don’t appear at all.
I can only look at this by the end of afternoon but doesn’t this example help?
Yes, the borders example has the sort of syntax I needed. For the record, my working code is now
rivers=((type=0,pen=("thicker",:lightblue)),(type=1,pen=("thick",:lightblue)),(type=2,pen=("thin",:lightblue))),
Thank you very much.
Good. And the syntax you tried first is logic too. Will try to implement it.