MCPcopy Create free account
hub / github.com/PDAL/PDAL / isRemote

Function isRemote

pdal/PDALUtils.cpp:321–328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

319*/
320
321bool 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
331std::string fetchRemote(const std::string& path)

Callers 15

readyMethod · 0.85
tryLoadRemoteMethod · 0.85
addArgsMethod · 0.85
initializeMethod · 0.85
tryLoadRemoteMethod · 0.85
initializeMethod · 0.85
doneMethod · 0.85
runMethod · 0.85
createFileMethod · 0.85
getPointlessLasFileFunction · 0.85
initializeMethod · 0.85
inspectMethod · 0.85

Calls 3

startsWithFunction · 0.85
toupperFunction · 0.85
findMethod · 0.45

Tested by

no test coverage detected