Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Log of /trunk

View Directory Listing Directory Listing


Sticky Revision:


Revision 1616 - Directory Listing
Modified Sat Nov 8 17:54:26 2014 UTC (10 years, 4 months ago) by amb
Updated for version 2.7.3.


Revision 1615 - Directory Listing
Modified Sat Nov 8 17:49:30 2014 UTC (10 years, 4 months ago) by amb
Translation of the final German word missing from the XML file.


Revision 1614 - Directory Listing
Modified Sat Oct 25 13:22:29 2014 UTC (10 years, 4 months ago) by amb
Sort the data geographically before pruning so that the data points physically
close together are close together in memory which reduces swapping/paging and
therefore runs much faster when memory is limited.


Revision 1613 - Directory Listing
Modified Thu Oct 23 17:56:26 2014 UTC (10 years, 4 months ago) by amb
Comment fixes, tidy-up and one bug fixed.


Revision 1612 - Directory Listing
Modified Wed Oct 22 12:02:47 2014 UTC (10 years, 4 months ago) by amb
Use the waysx->idata array instead of wayx->id when logging node errors during
the segment creation.


Revision 1611 - Directory Listing
Modified Tue Oct 21 09:59:27 2014 UTC (10 years, 4 months ago) by amb
Correct errors in wayx->id usage when compacting ways.


Revision 1610 - Directory Listing
Modified Tue Oct 21 09:56:08 2014 UTC (10 years, 4 months ago) by amb
Improve the message printed at the end when using --logtime or --logmemory.


Revision 1609 - Directory Listing
Modified Tue Oct 21 09:55:41 2014 UTC (10 years, 4 months ago) by amb
Clarify some comments.


Revision 1608 - Directory Listing
Modified Sat Oct 18 12:50:40 2014 UTC (10 years, 5 months ago) by amb
Use the waysx->idata array when logging duplicate segments rather than looking
up the wayx and using its id, also saves mapping the ways into memory.


Revision 1607 - Directory Listing
Modified Sat Oct 18 12:41:54 2014 UTC (10 years, 5 months ago) by amb
Use the nodesx->idata array when logging duplicate segments rather than looking
up the nodex and using its id.


Revision 1606 - Directory Listing
Modified Sat Oct 18 12:40:57 2014 UTC (10 years, 5 months ago) by amb
Shrink the size of the nodesx->idata array when removing non-highway nodes.


Revision 1605 - Directory Listing
Modified Sat Oct 18 10:30:57 2014 UTC (10 years, 5 months ago) by amb
Free memory that it allocated by IndexSegments() when no longer needed rather
than holding on to it.


Revision 1604 - Directory Listing
Modified Tue Oct 14 18:18:17 2014 UTC (10 years, 5 months ago) by amb
Speed up the database generation when pruning by reducing the amount of random
memory accesses are required by compacting the database after each step.  Unless
there is enough RAM to hold all the memory mapped files this should be faster.


Revision 1603 - Directory Listing
Modified Mon Oct 13 18:25:27 2014 UTC (10 years, 5 months ago) by amb
Try to speed up the search for the closest node/segment by minimising the number
of nodes that are examined in detail.


Revision 1602 - Directory Listing
Modified Fri Oct 10 19:01:52 2014 UTC (10 years, 5 months ago) by amb
Record the memory used by the node, segment, way and relation caches in the slim
mode router.


Revision 1601 - Directory Listing
Modified Fri Oct 10 18:35:26 2014 UTC (10 years, 5 months ago) by amb
Log the router time in microseconds rather than milliseconds.
Add a note at the end about the format of the time and memory logging.


Revision 1600 - Directory Listing
Modified Fri Oct 10 18:21:44 2014 UTC (10 years, 5 months ago) by amb
Add the '--logtime' and '--logmemory' options to the router to report the time
and maximum memory in use (allocated and mapped files) during each step of the
routing.


Revision 1599 - Directory Listing
Modified Tue Sep 30 18:31:51 2014 UTC (10 years, 5 months ago) by amb
Use exit() when exiting the program other than at the end of the main function.


Revision 1598 - Directory Listing
Modified Sat Sep 27 16:35:09 2014 UTC (10 years, 5 months ago) by amb
Add a '--logmemory' option to planetsplitter which will report the maximum
memory in use (allocated and mapped files) during each step of the processing.


Revision 1597 - Directory Listing
Modified Sat Sep 27 13:11:05 2014 UTC (10 years, 5 months ago) by amb
Be more consistent in the way that cache.h is included.


Revision 1596 - Directory Listing
Modified Fri Sep 26 14:58:13 2014 UTC (10 years, 5 months ago) by amb
Make a function static in logging.c rather than global.


Revision 1595 - Directory Listing
Modified Fri Sep 26 14:49:59 2014 UTC (10 years, 5 months ago) by amb
Free the segment list before generating the errorlog files (it isn't used).


Revision 1594 - Directory Listing
Modified Fri Sep 26 14:49:29 2014 UTC (10 years, 5 months ago) by amb
Change a comment and the style in which some data is freed.


Revision 1593 - Directory Listing
Modified Fri Sep 26 14:48:01 2014 UTC (10 years, 5 months ago) by amb
Free segmentsx->usedway in FreeSegmentList() rather than letting it leak.


Revision 1592 - Directory Listing
Added Fri Sep 26 14:46:08 2014 UTC (10 years, 5 months ago) by amb
Free segmentsx->firstnode in SaveNodeList() like DATALIFE.txt says it should be.