-
Notifications
You must be signed in to change notification settings - Fork 391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add plot method to base chesapeake #417
Conversation
This is done on purpose. Chesapeake data uses the proprietary deflate64 compression algorithm, so we want to use the same compression for the fake data. If you install |
Chesapeake7 and 13 have their own cmaps, which plot should use. I can fill that in though. |
I did a few other things:
|
Also, the fix should be in a separate PR, otherwise we can't put it in 0.2.1. |
The cmap fix should be in a separate PR so we can backport it to 0.2.1. |
* plot method to base chesapeake * fix typo * Add plotting to Chesapeake datasets * isort, yousort, weallsort * putting back the globs * putting back the geo.py change Co-authored-by: Caleb Robinson <[email protected]>
This PR adds a plot method to the Chesapeake dataset baseclass to address #253. I was unable to run pytest, because the currently generated fake data cannot be unzipped:
NotImplementedError: That compression method is not supported
should I change the archive method in the base data.py class to the
shutil.make_archive()
used in other data.py files?