English 中文(简体)
如何在像新4j这样的图表数据库中模拟机场/飞行数据
原标题:How to model airport/flight data in a graph database like neo4j
  • 时间:2012-01-14 14:34:11
  •  标签:
  • graph
  • neo4j

我需要在图表数据库中模拟航空公司的飞行数据(我特别与新4j合作,但如果出现问题,我将考虑其他数据)。 我更要问,如何利用这种数据来缓解各种飞行选择的渗透和发现。 我要储存和随后询问的数据类型的几个具体例子:

(1) 直接飞行设想,如JFK->LAX。 简单明了的两条关系。 但是,这两个节点之间可能有许多航班。 因此,如果我需要储存个别飞行细节,那是关于科索沃联合部队与利比里亚再次解放卢旺达民主力量分遣队之间关系的阵列中的最佳部分?

(2) 飞行设想有多个航站,如JFK->LAX->SAN。 在这种情形下,如果我对离开和抵达城市感兴趣的话,似乎仿照三个节点之间的关系可能用处不大? i.e. 我可以与法国联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-联邦-

如果我需要询问或驳斥根据各节点之间各种数据绘制的图表,以及这些阵列变得庞大(例如,科索沃联合阵线和拉汉温抵抗力量之间的100次不同飞行),那么将会产生业绩或可衡量的问题?

希望这个问题太不开放——我只想避免建造一个小的模范模式,有大约5个点,但可以扩大到数百个机场和数万个航班。

最佳回答

数百个机场和数万次飞行仍是一个很小的数据组,如果这将是新4j的问题,我感到惊讶。

也许,你可以把所有机场作为自己的分子,每个航道都可以与它所接触的所有机场有自己的关系,可能每个航道上都有“顺序”的财产。

         (ROUTE1)---------
         /               
*order=1/      *order=2   *order=3
       v        v           v
    (JFK)       (LAX)      (SAN)

我确信,有更好的解决办法。

问题回答

https://github.com/neo4j-contrib/graphgist/wiki#graphgist-challenge-submissions”rel=“nofollow”

他们竞赛的获奖者之一是一位名叫美国航班和机场。 做得很好





相关问题
Java: JGraphT: Iterate through nodes

I m trying to iterate through all nodes, so I can print them out for graphviz. What is the best way to do that using the JGraphT library? public static void main(String[] args) { UndirectedGraph&...

Java: Adding nodes to graph bug

Preface: I know that there are high quality graph APIs available. I m interested in writing my own for self-improvement. This is my function to add nodes: public void addNode(Vertex v, ...

Radial plotting algorithm

I have to write an algorithm in AS3.0 that plots the location of points radially. I d like to input a radius and an angle at which the point should be placed. Obviously I remember from geometry ...

Microsoft .Net Chart Control not showing markers

I m using the Microsoft Chart Controls for Microsoft .NET Framework 3.5 and am having a spot of trouble getting Data Markers to show on the image. I m generating the chart at run-time, so can t just ...

3D graphs using pChart

Is there a way to draw a 3D Bar Graph using the pChart library in PHP? I m able to draw a 3D Pie graph but not a line graph. My code looks as follows //The 3D bar graph # // Dataset ...

Finding cycle of 3 nodes ( or triangles) in a graph

I am working with complex networks. I want to find group of nodes which forms a cycle of 3 nodes (or triangles) in a given graph. As my graph contains about million edges, using a simple iterative ...

How to create line chart in iPhone application? [closed]

I am creating a budget application in iPhone, to budget for personal incomes and expenses. Client s need is I want to see line graph (like stock market line report). Red line for (monthly / weekly /...

热门标签