Kyle Mandli
Kyle Mandli
In the process of making tests this will also provide a good idea of what in VisClaw is not being used and possibly removed as suggested in #39.
Do we want to revisit this issue? GeoClaw for instance has a number of skipped tests that actually do plotting and may provide something in terms of regression testing. On...
Maybe temporarily (or always) set the `plotfigure.show` to `False`?
That's the correct behavior but maybe that's implemented to far out to be useful for the KML plots. Perhaps adding logic at that point and checking if `use_for_kml` is `True`...
The example that does not work is in $GEOCLAW/examples/tsunami/chile2010 with my example-fixes branch. I stared at the code for a bit and did not figure out what was wrong. I...
The issue was not what I originally thought. The GeoClaw plotting uses separate plot items for the land and water areas. In this particular plot the land has the first...
Matplotlib does not seem to be at fault. If you try out this example ``` python import numpy as np import matplotlib.pyplot as plt x = np.linspace(0,1,10) y = np.linspace(0,1,10)...
What kind of warning are you thinking? I could see simply printing out a warning message to the terminal or actually raising an exception. I am slightly more in favor...
This sounds like a threading problem, something that used to be an issue with `ipython` and the like. I am not sure how to go about fixing this but perhaps...
I think reading in of the `geoclaw.data` file should work via the `ClawData` framework so you could do that. Also, we could replace the function in `geoplot` in the `setplot`...