| 319 | */ |
| 320 | |
| 321 | bool isRemote(const std::string& path) |
| 322 | { |
| 323 | // if you are using GDAL VSI you know what you are doing |
| 324 | if (Utils::startsWith(Utils::toupper(path), "/VSI")) |
| 325 | return false; |
| 326 | else |
| 327 | return path.find("://") != std::string::npos; |
| 328 | } |
| 329 | |
| 330 | |
| 331 | std::string fetchRemote(const std::string& path) |
no test coverage detected