[pdal-commits] [PDAL/PDAL] 53190e: fix up comparision
GitHub
noreply at github.com
Wed Feb 29 20:22:45 EST 2012
Branch: refs/heads/master
Home: https://github.com/PDAL/PDAL
Commit: 53190ee1ec1bf11283a137e5f7c180962618de3d
https://github.com/PDAL/PDAL/commit/53190ee1ec1bf11283a137e5f7c180962618de3d
Author: Howard Butler <hobu.inc at gmail.com>
Date: 2012-02-28 (Tue, 28 Feb 2012)
Changed paths:
M src/Dimension.cpp
Log Message:
-----------
fix up comparision
Commit: dac076a8e01941bb490b738b565c148a4b054b9f
https://github.com/PDAL/PDAL/commit/dac076a8e01941bb490b738b565c148a4b054b9f
Author: Howard Butler <hobu.inc at gmail.com>
Date: 2012-02-28 (Tue, 28 Feb 2012)
Changed paths:
M src/StageIterator.cpp
Log Message:
-----------
increase the default chunk size to 65536
Commit: 054eb091bc0a0288c5be0a0403d07eb8ec23528d
https://github.com/PDAL/PDAL/commit/054eb091bc0a0288c5be0a0403d07eb8ec23528d
Author: Howard Butler <hobu.inc at gmail.com>
Date: 2012-02-28 (Tue, 28 Feb 2012)
Changed paths:
M src/filters/Colorization.cpp
M src/filters/InPlaceReprojection.cpp
Log Message:
-----------
mark float options as floats
Commit: aa8ac6d8f3dd900d4d2cb99e5c25b970a13101d1
https://github.com/PDAL/PDAL/commit/aa8ac6d8f3dd900d4d2cb99e5c25b970a13101d1
Author: Howard Butler <hobu.inc at gmail.com>
Date: 2012-02-28 (Tue, 28 Feb 2012)
Changed paths:
M src/PointBuffer.cpp
Log Message:
-----------
use numeric_cast instead of lexical_cast for STRINGIFY to get proper numeric conversions -- let the ostream of ptree do the conversion to string after that
Commit: 14e8e0eea48676a1e69bc3b8b33f95e98e71a187
https://github.com/PDAL/PDAL/commit/14e8e0eea48676a1e69bc3b8b33f95e98e71a187
Author: Howard Butler <hobu.inc at gmail.com>
Date: 2012-02-29 (Wed, 29 Feb 2012)
Changed paths:
M include/pdal/PointBuffer.hpp
Log Message:
-----------
try to do something when float vs int requests come into getField, separate out the conversion part of the function from the rest, add a default PointBuffer size of 65536 to try to start doing away with default chunk size
Commit: 8abf90b93e4f4ccbda2b805a4d8afc104fbed886
https://github.com/PDAL/PDAL/commit/8abf90b93e4f4ccbda2b805a4d8afc104fbed886
Author: Howard Butler <hobu.inc at gmail.com>
Date: 2012-02-29 (Wed, 29 Feb 2012)
Changed paths:
M src/PointBuffer.cpp
Log Message:
-----------
treat int8_t and uint8_t as 32-bit ints for string printing purposes
Commit: 1666e6172175e7c4bc06e4a90b820c8742e7cb90
https://github.com/PDAL/PDAL/commit/1666e6172175e7c4bc06e4a90b820c8742e7cb90
Author: Howard Butler <hobu.inc at gmail.com>
Date: 2012-02-29 (Wed, 29 Feb 2012)
Changed paths:
M apps/pcinfo.cpp
M include/pdal/FilterIterator.hpp
M include/pdal/MultiFilterIterator.hpp
M include/pdal/ReaderIterator.hpp
M include/pdal/Stage.hpp
M include/pdal/StageIterator.hpp
M include/pdal/drivers/faux/Reader.hpp
M include/pdal/drivers/las/Reader.hpp
M include/pdal/drivers/mrsid/Reader.hpp
M include/pdal/drivers/oci/Reader.hpp
M include/pdal/drivers/pipeline/Reader.hpp
M include/pdal/drivers/qfit/Reader.hpp
M include/pdal/drivers/terrasolid/Reader.hpp
M include/pdal/filters/ByteSwap.hpp
M include/pdal/filters/Cache.hpp
M include/pdal/filters/Chipper.hpp
M include/pdal/filters/Color.hpp
M include/pdal/filters/Colorization.hpp
M include/pdal/filters/Crop.hpp
M include/pdal/filters/Decimation.hpp
M include/pdal/filters/InPlaceReprojection.hpp
M include/pdal/filters/Mosaic.hpp
M include/pdal/filters/Predicate.hpp
M include/pdal/filters/Programmable.hpp
M include/pdal/filters/Reprojection.hpp
M include/pdal/filters/Scaling.hpp
M include/pdal/filters/Selector.hpp
M include/pdal/filters/Stats.hpp
M src/FilterIterator.cpp
M src/MultiFilterIterator.cpp
M src/ReaderIterator.cpp
M src/StageIterator.cpp
M src/Writer.cpp
M src/drivers/faux/Reader.cpp
M src/drivers/las/Reader.cpp
M src/drivers/mrsid/Reader.cpp
M src/drivers/oci/Reader.cpp
M src/drivers/pipeline/Reader.cpp
M src/drivers/qfit/Reader.cpp
M src/drivers/terrasolid/Reader.cpp
M src/filters/ByteSwap.cpp
M src/filters/Cache.cpp
M src/filters/Chipper.cpp
M src/filters/Color.cpp
M src/filters/Colorization.cpp
M src/filters/Crop.cpp
M src/filters/Decimation.cpp
M src/filters/InPlaceReprojection.cpp
M src/filters/Mosaic.cpp
M src/filters/Predicate.cpp
M src/filters/Programmable.cpp
M src/filters/Reprojection.cpp
M src/filters/Scaling.cpp
M src/filters/Selector.cpp
M src/filters/Stats.cpp
M test/data/apps/pcinfo_point.txt
M test/unit/BPFTest.cpp
M test/unit/ByteSwapFilterTest.cpp
M test/unit/CacheFilterTest.cpp
M test/unit/ColorizationFilterTest.cpp
M test/unit/DecimationFilterTest.cpp
M test/unit/DimensionTest.cpp
M test/unit/FauxReaderTest.cpp
M test/unit/FauxWriterTest.cpp
M test/unit/InPlaceReprojectionFilterTest.cpp
M test/unit/LasReaderTest.cpp
M test/unit/MosaicFilterTest.cpp
M test/unit/OCITest.cpp
M test/unit/PipelineReaderTest.cpp
M test/unit/QFITReaderTest.cpp
M test/unit/SchemaLayoutTest.cpp
M test/unit/StatsFilterTest.cpp
M test/unit/Support.cpp
M test/unit/TerraSolidTest.cpp
Log Message:
-----------
require that a PointBuffer& be passed in to create a sequential iterator -- random will be updated next
Compare: https://github.com/PDAL/PDAL/compare/9936d9a...1666e61
More information about the pdal-commits
mailing list