Kyle Mandli

Results 340 comments of Kyle Mandli

I have been seeing something similar lately as well when playing with some methods for reducing the memory footprint when plotting 1,000s of patches (colorbar and axes are screwed up)....

Another way to do this that keeps some of the `kwargs` separate and maintains the ability to do a particular `pc_cmd` (for `pcolor`): ```python vmin = pp['pcolor_cmin'] if vmin is...

I ran into something similar in Python 3 again. I changed assignment of `pobj` to `plotitem._current_pobj` so that it gets set by the last non-masked plot object. This could be...

This would not be difficult to implement as the code for checking arrival times has most of what would be needed. If there are multiple times where a point goes...

Given that the arrival time was the last value recorded in the data files it may be possible to handle this in a nice way where each point could have...

@rjleveque do you have thoughts on this? You are (I think) the original author of this functionality so let me know if I am missing something that would make this...

This is duplicated functionality as the `FrictionData` object handles this type of friction along with file based friction specifications (although this is not implemented). Unless there is a reason to...

`FrictionData` was created to handle any kind of friction coefficient data but never was fully implemented. The documentation is an oversight as it is documented but was never plugged into...

Thanks @rjleveque, I am not entirely sure why I had started from scratch with the functionality in `FrictionData` although part of the additional functionality does include regions for the definitions...

You are correct that this is simply "perturbing" a state at rest but GeoClaw currently has no other way to initialize the sea-surface without additional code modifications so there really...