------------------------------------------------------------------------------
| 501 | |
| 502 | //------------------------------------------------------------------------------ |
| 503 | int vtkGDALVectorReader::GetActiveLayerFeatureCount() |
| 504 | { |
| 505 | return this->ActiveLayer < 0 || this->ActiveLayer >= this->GetNumberOfLayers() |
| 506 | ? 0 |
| 507 | : this->GetFeatureCount(this->ActiveLayer); |
| 508 | } |
| 509 | |
| 510 | //------------------------------------------------------------------------------ |
| 511 | const char* vtkGDALVectorReader::GetLayerProjection(int layerIndex) |