------------------------------------------------------------------------------
| 556 | |
| 557 | //------------------------------------------------------------------------------ |
| 558 | vtkStringArray* vtkNetCDFReader::GetAllVariableArrayNames() |
| 559 | { |
| 560 | int numArrays = this->GetNumberOfVariableArrays(); |
| 561 | this->AllVariableArrayNames->SetNumberOfValues(numArrays); |
| 562 | for (int arrayIdx = 0; arrayIdx < numArrays; arrayIdx++) |
| 563 | { |
| 564 | const char* arrayName = this->GetVariableArrayName(arrayIdx); |
| 565 | this->AllVariableArrayNames->SetValue(arrayIdx, arrayName); |
| 566 | } |
| 567 | |
| 568 | return this->AllVariableArrayNames; |
| 569 | } |
| 570 | |
| 571 | //------------------------------------------------------------------------------ |
| 572 | bool vtkNetCDFReader::ComputeArraySelection() |
no test coverage detected