Skip to content

Commit

Permalink
Update arbiter bundle for removal of homedir logging, copyable endpoi…
Browse files Browse the repository at this point in the history
…nts, and simpler namespacing. (#2958)
  • Loading branch information
abellgithub committed Mar 5, 2020
1 parent 7ba37c2 commit b089eb2
Show file tree
Hide file tree
Showing 4 changed files with 133 additions and 138 deletions.
5 changes: 2 additions & 3 deletions io/EptReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,7 @@ std::vector<char> EptReader::getBinary(const std::string path) const
}


std::unique_ptr<arbiter::LocalHandle> EptReader::getLocalHandle(
const std::string path) const
arbiter::LocalHandle EptReader::getLocalHandle(const std::string path) const
{
if (m_ep->isLocal())
return m_ep->getLocalHandle(path);
Expand Down Expand Up @@ -765,7 +764,7 @@ PointId EptReader::readLaszip(PointView& dst, const Key& key,
PointTable table;

Options options;
options.add("filename", handle->localPath());
options.add("filename", handle.localPath());
options.add("use_eb_vlr", true);

LasReader reader;
Expand Down
3 changes: 1 addition & 2 deletions io/EptReader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,7 @@ class PDAL_DLL EptReader : public Reader, public Streamable
// Data fetching - these forward user-specified query/header params.
std::string get(std::string path) const;
std::vector<char> getBinary(std::string path) const;
std::unique_ptr<arbiter::LocalHandle> getLocalHandle(std::string path)
const;
arbiter::LocalHandle getLocalHandle(std::string path) const;

std::string m_root;

Expand Down

0 comments on commit b089eb2

Please sign in to comment.