Tagged Questions
2
votes
2answers
2k views
Topological sort, recursive, using generators
Data: a dependency list, already verified to be acyclic. So here, 'a' depends on 'b','c','d' (c depends on d), etc...
A = { 'a' : dict(b=1, c=1),
'c' : dict(d=1),
'd' : ...
1
vote
1answer
38 views
Equivalent to Java Topology Suite and Jena TBD in Python
I normally use the Java Topology Suite to handle 2D geometries in Java.
Is there a similar library in Python, supporting some spatial standard such as GML?
1
vote
2answers
68 views
Parent/Child database contains cyclical references
I have a keyword table where each keyword is assigned an id and is unique. I have a second table that links ids of parent keywords to ids of child keywords. One keyword can have up to approx 800 ...