Skip to content

Commit

Permalink
Fix EPT number of points value when greater than 32 bits.
Browse files Browse the repository at this point in the history
  • Loading branch information
connormanning committed Jul 10, 2020
1 parent e53f7a8 commit 43fe023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/private/EptSupport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ namespace pdal
EptInfo::EptInfo(const NL::json& info) : m_info(info)
{
m_bounds = toBox3d(m_info.at("bounds"));
m_points = m_info.value("points", 0);
m_points = m_info.value<uint64_t>("points", 0);
m_span = m_info.at("span").get<uint64_t>();

auto iSrs = m_info.find("srs");
Expand Down

0 comments on commit 43fe023

Please sign in to comment.