Martin Bentley

Results 22 comments of Martin Bentley

Thanks for the encouragement. I will have a think about how the API might look, and see if I can make something sensible for a PR.

As an example. This is using the RdBu colourmap, which is well-suited for diverging data: ![tdx1](https://cloud.githubusercontent.com/assets/1148889/9378721/fd3f3a78-4723-11e5-920a-4ac8ab77b2dd.png) This is the default, using JET. ![tdx2](https://cloud.githubusercontent.com/assets/1148889/9378722/fdc69b8a-4723-11e5-8dde-1e6071c96224.png) This is using a reversed PuBu: ![tdx3](https://cloud.githubusercontent.com/assets/1148889/9378873/36befeea-4725-11e5-9114-c8fa7b956bc4.png)...

Yeah, it complains that I do not have a fortran compiler installed. Not sure if it is on my end or if there is something odd on their end. But...

So #293 seems to be working well. We should consider rolling this out for all the methods we have implemented. As a general preference, do we want to use a...

Cool. Will give that a stab. How do I get the derivative of df, where f is the function of the total field intensity though? The rest of the tilt...

Just to confirm then, `derivx` and `derivz` will get the `df/dx` and `df/dz`? That would mean that tilt would be implemented by something like: ~~`def tilt(x, y, data, shape):`~~ ~~`horiz_deriv...

Looks like Mayavi might finally be moving over to Python3 as well: http://docs.enthought.com/mayavi/mayavi/auto/changes.html?highlight=python3 which I think was out major block, correct?

Been taking a look at this, and it looks like more recent versions of matplotlib do not allow for custom hatch patterns. For now at least, the workaround here in...

There are a number of cases that should probably be handled: 1. Only tops are given - bases are inferred to be the next top. 2. Only bases are given...

https://gist.github.com/mtb-za/3f94ffc426e804e7b2c778c2f0c6f051 has a couple of approaches, one using `np.genfromtxt` and one using `csv.DictReader`. Not sure if one appeals to you more than another one. If we want to get input...