Mike McCann
Mike McCann
I appreciate [this description](https://github.com/pydanny/cookiecutter-django/issues/2580#issue-610082041)! My configuration was getting a database connection error using zsh. I fixed it with this change to `devcontainer.json`: ```diff - "postCreateCommand": "apt-get update && apt-get install...
I finally got things working for debugging View code in VS Code. A few notes: - No need to use debugpy, I changed by debug /start script to start runserver_plus...
Running my tests with Pydap==3.2.1 I see that [this code](https://github.com/pydap/pydap/blob/4ae73e393b0d52bce9d1cf5571945a9ed884d526/src/pydap/model.py#L234-L239) is never reached with the `values = self.ds[v].array[:].flatten()` call. I wonder if [this commit](https://github.com/pydap/pydap/commit/4207286bc173dc9971eedd5508c41878e18cf1aa) changed how attributes are examined for...
It seems that previous versions of Pydap allowed accessing data without using the .data attribute. Here are [the specific changes](https://github.com/stoqs/stoqs/pull/659/commits/8839c32d2607ec3484b71efa5a85cdcc6fa87b38) to my code to make it work in version 3.2.2....
Ahhh! I cloned the current repo and discovered that [this commit](https://github.com/pydap/pydap/commit/84e85db948012de7368da610a63376c1e2f273ef) has probably fixed the problem.
Yes, that commit has fixed my problem. It's been over a year since there's been a new release of Pydap. Perhaps it's time to push a new one out to...
To give some motivation for this Issue please see [this MBARI news story](https://www.mbari.org/canyon-up-close-new-animation-drains-monterey-bay-to-uncover-the-beauty-of-its-geology/) that showcases a video created by Hollywood visual effects artists. By moving our terrain generation pipeline to...
I found out that there is a new program ([mbgrd2obj](https://github.com/dwcaress/MB-System/blob/master/src/gmt/mbgrd2obj.c)) in the MB-System package that I think will simplify the current [terrain generation pipeline](https://github.com/stoqs/stoqs/blob/master/doc/instructions/SPATIAL_3D.md#x3dom-popgeometry-or-src-from-a-gmt-grd-file). This program should eliminate the need...
Perhaps some traction can be achieved by exploring the capabilities of https://blendernc.readthedocs.io/en/latest/. The goal would be to load a bathymetry file in GMT netCDF format into Blender and output it...
https://github.com/stoqs/stoqs/pull/1175 has been merged. As noted in the comments a few fixes are needed for this to work in production. Furthermore, some discussion is in order to determine in which...