| age |
author |
description |
| 21 hours ago |
Howard Butler |
we can round-trip schema XML to/from VLRs nowdefault tip |
| 27 hours ago |
Howard Butler |
use boost::uint64_t for SetClass's bitset too |
| 27 hours ago |
Howard Butler |
specify the length in case our file has funky, un-strlen'able characters |
| 32 hours ago |
Howard Butler |
write schema VLR into files that have a custom schema |
| 32 hours ago |
Howard Butler |
whitespace normalization |
| 32 hours ago |
Howard Butler |
use boost::uint64_t for bitset constructor |
| 33 hours ago |
Howard Butler |
start on schema writing -- broken just now, however |
| 43 hours ago |
Howard Butler |
start developing a constructor from VLRs |
| 45 hours ago |
Howard Butler |
consolidate Dimension into a single class, start on PTree |
| 2 days ago |
Howard Butler |
Make liblas::Reader::SetFilters and liblas::Reader::SetTransforms take in shared_ptr's instead of raw pointers |
| 2 days ago |
Howard Butler |
remove SetDataRecordLength, which didn't exist in 1.2, so no consequence API-wise. If you want to increase the data record length, you must add dimensions to a liblas::Schema |
| 2 days ago |
Howard Butler |
initial rewrite of liblas::Schema |
| 2 days ago |
Howard Butler |
switch off schema in C API for now, this is broken and will be fixed |
| 2 days ago |
Howard Butler |
make failures more descriptive |
| 5 days ago |
Howard Butler |
typo variable name |
| 7 days ago |
Howard Butler |
install a GDAL error handler that respects --debug and and issues messages to std::cout. Properly catch Execute() exceptions and throw more relevant errors in those cases |
| 7 days ago |
Howard Butler |
off-by-one error in ReaderImpl::Seek, make sure we actually read the first point in the file |
| 7 days ago |
Howard Butler |
return program_options as heap-allocated |
| 7 days ago |
Howard Butler |
wipe out a few more unused warnings |
| 7 days ago |
Howard Butler |
clean up more unused warnings |
| 7 days ago |
Howard Butler |
silence some msvc warnings |
| 7 days ago |
Howard Butler |
notes about OCI on windows and back down the minimum boost version to 1.38, which is what cmake is enforcing currently |
| 7 days ago |
Howard Butler |
add a .bat file for running cmake on my environment, others may find this useful, bit it will not be distributed by default |
| 7 days ago |
Howard Butler |
touch up includes for new include/external structure |
| 8 days ago |
Mateusz Loskot |
Added include/liblas/external module dedicated for includes of third party libraries. Moved property_tree headers to the external |
| 8 days ago |
Mateusz Loskot |
Update to previous commit - use unsinged long only as std::bitset ctor input |
| 8 days ago |
Mateusz Loskot |
C++03 std::bitset ctor takes unsigned long which is either 32 or 64 bit depending on implementation. std::bitset ctor in C++0x takes unsigned long long as 64-bit long is supported. Cast all bitset numeric input to unsigned long which will be promoted to unsigned long long by C++0x implementations without warnings. |
| 8 days ago |
Mateusz Loskot |
Missing casts of RGB components to uint16_t after validatoin. Removed redundant validation in ctor taking array<uint16_t, 3> - values are never larger than max limit of uint16_t anyway. |
| 8 days ago |
Howard Butler |
merge |
| 8 days ago |
Howard Butler |
fix ups so las2oci compiles on windows |
| 8 days ago |
Mateusz Loskot |
Removed libxml2 from CMake configuration |
| 8 days ago |
Mateusz Loskot |
Removed libxml2 from CMake configuration |
| 8 days ago |
Howard Butler |
don't look for occi and nnz when using msvc (assuming instant client here) |
| 8 days ago |
Howard Butler |
only link oracle stuff against las2oci, not everything |
| 8 days ago |
Howard Butler |
#ifndef code to silence unreachable warning |
| 8 days ago |
Howard Butler |
boost:: qualify integer types |
| 8 days ago |
Howard Butler |
clean up strdup warnings by using LASCopyString |
| 8 days ago |
Howard Butler |
merge |
| 8 days ago |
Howard Butler |
merge |
| 8 days ago |
Howard Butler |
do not #ifdef strcmp, it is bad form. Instead #ifdef to LASCopyString and use that throughout C API |
| 8 days ago |
Mateusz Loskot |
Define _CRT_SECURE_NO_DEPRECATE for Visual C++ |
| 8 days ago |
Howard Butler |
qualify integer name |
| 8 days ago |
Howard Butler |
unfix my _MSC_VER_FULL fix that was broken for msvc10 |
| 8 days ago |
Howard Butler |
cast to uint64_t to fit with default bitset constructors |
| 8 days ago |
Howard Butler |
use uint32_t for liblas::Color constructor, but carry around as a uint16_t. Verify upon construction |
| 8 days ago |
Howard Butler |
docs for mloskot |
| 8 days ago |
Howard Butler |
add link_directories for boost to everything |
| 8 days ago |
Howard Butler |
more docs |
| 8 days ago |
Howard Butler |
some more docs for new public methods |
| 8 days ago |
Howard Butler |
add some docs to filter types |
| 8 days ago |
Howard Butler |
add links to other hulling resources |
| 8 days ago |
Howard Butler |
missing cd issuance |
| 8 days ago |
Howard Butler |
add xyz filter example |
| 8 days ago |
Mateusz Loskot |
Fixed linking against Boost libraries when building with Visual Studio (tested with 2005). By default, disable dynamic linking, use static multi-threaded. If dynamic linking is requied, static linking has to be disabled explicitly. Added Boost_LIBRARY_DIRS to linker directories. |
| 8 days ago |
Mateusz Loskot |
FIXME comment |
| 8 days ago |
Mateusz Loskot |
Missing boost namepsace import to find integer types. |
| 8 days ago |
Mateusz Loskot |
Warnings cleanup, missing namepsace qualification, tidy up. |
| 8 days ago |
Mateusz Loskot |
Do not use hungarian notation |
| 8 days ago |
Mateusz Loskot |
Avoid double copies of Classification, copies of string. Shorten long type definition. |
| 8 days ago |
Mateusz Loskot |
Replaced uint8_t with uint32_t for input of Classification index. Larger type allows more robust validation and helps to avoid potential integer overflow. uint8_t left as Classification::GetClass return type according to the spec. |