------------------------------------------------------------------------------
| 638 | |
| 639 | //------------------------------------------------------------------------------ |
| 640 | vtkStdString vtkNetCDFReader::DescribeDimensions(int ncFD, const int* dimIds, int numDims) |
| 641 | { |
| 642 | std::string description; |
| 643 | for (int i = 0; i < numDims; i++) |
| 644 | { |
| 645 | char name[NC_MAX_NAME + 1]; |
| 646 | CALL_NETCDF_PTR(this->Accessor->inq_dimname(ncFD, dimIds[i], name)); |
| 647 | if (i > 0) |
| 648 | description += " "; |
| 649 | description += name; |
| 650 | } |
| 651 | return description; |
| 652 | } |
| 653 | |
| 654 | //------------------------------------------------------------------------------ |
| 655 | int vtkNetCDFReader::ReadMetaData(int ncFD) |
no test coverage detected