csdms / bmi-fortran

Basic Model Interface for Fortran
https://bmi.readthedocs.io
MIT License
6 stars 10 forks source link

Implement grid face, point, and vertex methods #25

Closed mdpiper closed 4 years ago

mdpiper commented 5 years ago

They're used here, for example. They're a part of BMI++. Their signatures are:

int (* get_grid_face_count)(void *, int, int *);
int (* get_grid_point_count)(void *, int, int *);
int (* get_grid_vertex_count)(void *, int, int *);

Update: Well, actually, there are several methods to implement. Here's the list:

mdpiper commented 4 years ago

Fixed with #40