TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Optimal office relocation (London) based on journey times of employees

4 点作者 spicerguy将近 10 年前
A variant on the shortest path problem - we have multiple employees with access to underground stations around London. What would be the best way of choosing a new office location given the starting points of the employees with the primary goal to keep average transit time using public transport to the new location a minimum? And has anybody done this already? (Mapumental have an open service but it seems to be the wrong way round for my purposes<i>). I&#x27;ve not been able to find anything but perhaps I&#x27;ve been asking the wrong question. the ability to weight the importance of various key staff would be nice as well. Of course, we might well end up just schlepping over to Silicon roundabout.<p></i>edited to clarify that Mapumentals service is not wrong, just the way I want to use it

4 条评论

alltakendamned将近 10 年前
It&#x27;s a problem which is common in the transport sector to decide on where to build warehouses. Unfortunately I don&#x27;t have recommendations that are open to use, most seem to be custom in-house solutions.<p>A big question is what you are optimising for? If it&#x27;s average time, it could be that it is far for everyone. Or are you employees living in clusters that can carry a heigher weight? You already talk about different staff carrying a different weight. etc. etc.<p>It&#x27;s typically not even easy to properly define the problem :-)
ZeroGravitas将近 10 年前
Can&#x27;t you run Mapumental for each home and then combine the results somehow to find the best location?<p>Actually, do they already support this? They say &quot;Mapumental handles multiple start or destination points too.&quot;<p>I was thinking just overlaying the maps as semi-transparent PNGs would reinforce the color gradient of the nearest places.
评论 #9658278 未加载
helen842000将近 10 年前
I would probably start by asking your staff their nearest 2 underground stations. Upload the spreadsheet to something like ZeeMaps to pin all the locations to a map and getting a visual idea of where clusters appear. You could even do this on your office wall.<p>However is the best office one that has the shortest journey? Surely neighbourhood, space, cost &amp; local facilities are equally important.
loumf将近 10 年前
There are probably a fintite number of points that are your best guess and near a station. Use station locations inside a radius.<p>Then run them all through mapumental to get distances. Weighting can be done in code or a spreadsheet.<p>Or implement a hill climbing algorithm using mapumental and the weights to make your cost function.