summaryrefslogtreecommitdiff
path: root/tagstats/geodistribution.hpp
Commit message (Collapse)AuthorAge
* Fix a bug with nodes outside bboxJochen Topf2013-10-07
| | | | | | | | | | | | If there are nodes with locations outside the bounding box we are interested in in the input osm file and we are generating the geodistribution for ways images, tagstats could segfault. In this case the node location wasn't stored in the m_storage, so when reading the it back, either you get an unintialized value or a segfault. (This also depends on the type of storage used.) Thanks to @lonvia for help debugging this. The solution is to store "MAXINT" as a marker and make sure it doesn't end up in the GeoDistribution.
* Cleanup license infoJochen Topf2012-08-20
|
* fix: distribution map did not work when there were no nodes with a tagJochen Topf2011-10-13
|
* indentJochen Topf2011-10-12
|
* Generate distribution maps for keys on way, tooJochen Topf2011-10-12
| | | | | | | | Until now distribution maps were only generated for keys on nodes. No there are maps for keys on ways, too. (Not for relations, though). This commit also adds command line options for tagstats to define the area you want the map for. Its no longer necessary to recompile tagstats if you want to change this. This commit does not change the UI/API yet, so you still only get the node map.
* CleanupJochen Topf2011-04-22
|
* Added out-of-bounds-check, initalize global staticJochen Topf2011-04-22
|
* Moved distribution map code into own class and added memory optimization.Jochen Topf2011-04-21