Ben Mather

Results 46 comments of Ben Mather

@michaelchin - Can you take over this PR? I don't have capacity any more and I am lost on how to get the new DataServer (powered by plate-model-manager) to overwrite...

Everything in quotation blocks is rendered by pdoc as documentation. Better to put hashtags there instead.

Hi @taschaap 👋 Thanks for using GPlately. I believe the deforming networks can be accessed as follows: ```python gpd = gplot.get_all_topologies() # geopandas dataframe gpd_network = gpd[gpd['feature_name'] == 'TopologicalNetwork'] #...

Some of these compression methods are not compatible with all versions of netCDF and some of the data quantisation handled by `significant_digits` keyword sometimes garbles the netCDF data. More investigation...

Turns out zlib is still the best way to ensure the .nc files can be uncompressed without errors. `significant_digits` does work, and will preserve nan masks so long as there...

The seafloor age gridding workflow has now been modified to use the new compression options in `write_netcdf_grid`. The `read_netcdf_grid` could have more flexible reading of `.nc` files. Will address that...

The "TRMESH - Fatal error!" message is printed at the fortran level if a permutation fails to produce non-collinear points in the first 3 entries of the lon / lat...

@kitchenknif for now you can fix your code by manually permuting the first 3 points in your list. Adding this line: ```python phi[1], phi[4] = phi[4], phi[1] theta[1], theta[4] =...

> I can understand tracking filenames for RotationModel and FeatureCollection. But why can Feature be associated with "filenames"? Can you create a `pygplates.feature` from a filename? If not, we can...

Yes, I’ve encountered this error too. I think that it is a mistake to bundle different geometry types in with the plate model. My preference is that these COBs are...