Michael Grund
Michael Grund
> > > Related issue: [psf/black#318](https://github.com/psf/black/issues/318) Means it is not possible to do any automatic check and everybody has to care about the spaces before committing, right?
> > > `docformatter` can remove trailing whitespaces from the following script: > > ``` > """ > A docstring with some invisible whitespace. > > More description with some...
> I like how GMT.jl handles clipping through the coast module (https://www.generic-mapping-tools.org/GMT.jl/dev/#GMT.coast) using a `clip` parameter that controls both starting and ending clip paths. In Python form, `clip="land"` starts clip...
> Need to also add some unit tests to `test_coast.py` to cover the clip parameter. Maybe one for a land clip and one for a water clip. Tests are added...
Btw, should we also use the static_earth_relief here?
> Yes, after testing the feasibility with #1779, I still think that using a context manager for clipping land, water, and countries would be a good idea. @michaelgrund, I am...
I saw the corresponding GMT PR was merged with only a fix in the docs @maxrjones. Do you think we can continue here?
> > > > Furthermore, currently the whole procedure is performed in a loop since it's not possible to pass multi-segment lines to the plot function so far (except using...
> > > > Furthermore, currently the whole procedure is performed in a loop since it's not possible to pass multi-segment lines to the plot function so far (except using...
Let's start the discussion @GenericMappingTools/pygmt-maintainers 😉. Currently the following cases are covered: ``` import pygmt fig = pygmt.Figure() fig.basemap(region=[0, 10, 0, 11], projection="X10c/10c", frame=True) # single line with only a...