Activity for Alain L'Hostis

  • Alain L'Hostis Alain L'Hostis posted a comment on ticket #896

    nice! any way to obtain an unstable current version? later than the current 573?

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Sure this helps! 1. i suppose this does not apply in version 5.4, but only later versions (i do not see the "tooltips display parameters") 2. can I keep the feature in the static image generated (snapshot)?

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    possibly off topic: i would like to generate an image of my graph clickable, with info on nodes while hovering the image; I'm probably dreaming but who knows? Would we have a solution with tulip?

  • Alain L'Hostis Alain L'Hostis created ticket #896

    AppImage 573 Segmentation fault (core dumped)

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    HUGE thanks Patrick, so OK I remove the Tulip 5.4 coming from the Ubuntu deb official...

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    I've been working on this graph for some time, saved it with the same name, and now, this version of the graph crashes Tulip in versions 4.5 and 4.7.1 What went wrong? What could I do to retrieve my work ? Since I see in previous post that you realised a marvellous reparation :) Thanks Patrick n advance...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    I've been working on this graph for some time, saved it with the same name, and now, this version of the graph crashes Tulip in versions 4.5 and 4.7.1 What went wrong? What could I do to retrieve my work ? Since I see in previous post that you realised a marvellous reparation :) Thanks Patrick n advance...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    thnks Patrick, will investigate this...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    While it works fine on my laptop, it crashes at the office; below is the error messages. What else can I provide to find the issue? Many thnks and warm hello Patrick :) (base) lhostis@loustix:~/Documents/Travail/Logiciels/Tulip$ ./Tulip-5.7.1.AppImage Perspective running in standalone mode TLP_PLATEFORM linux TLP_ARCH x86_64 TLP_COMPILER gcc TLP_VERSION 5.7.1 TLP_STACK_BEGIN #00 0x00007f67303f6c43 in llvm::APInt::countLeadingZerosSlowCase() const (+0x23) from /lib/x86_64-linux-gnu/libLLVM-15.so.1...

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    This is it, here comes my working solution. In my previous code there was a mistake in the naming of the property, I made a mistake in typing an 'U' instead of an 'u'. In the end, the code that works is here: ~~~ node_label = graph.getStringProperty("urbanAgglomeration") node_city_code = graph.getIntegerProperty("cityCode") sourceP = graph.getIntegerProperty("edge_source") targetP = graph.getIntegerProperty("edge_target") sourceL = graph.getStringProperty("source_label") targetL = graph.getStringProperty("target_label")...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    This is it, here comes my working solution. In my previous code there was a mistake in the naming of the property, I made a mistake in typing an 'U' instead of an 'u'. In the end, the code that works is here: ~~~ node_label = graph.getStringProperty("urbanAgglomeration") node_city_code = graph.getIntegerProperty("cityCode") sourceP = graph.getIntegerProperty("edge_source") targetP = graph.getIntegerProperty("edge_target") sourceL = graph.getStringProperty("source_label") targetL = graph.getStringProperty("target_label")...

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    Immensely useful dear Benjamin! I made huge steps in understanding tulip graphs. I am geting so close to the desired output, but not yet there: node_label = graph.getStringProperty("UrbanAgglomeration") sourceP = graph.getIntegerProperty("edge_source") targetP = graph.getIntegerProperty("edge_target") sourceL = graph.getStringProperty("source_label") targetL = graph.getStringProperty("target_label") for e in graph.getEdges(): source, target = graph.ends(e) sourceP[e] = source.id targetP[e] = target.id...

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    Immensely useful dear Benjamin! I made huge steps in understanding tulip graphs. I am geting so close to the desired output, but not yet there: node_label = graph.getStringProperty("UrbanAgglomeration") sourceP = graph.getIntegerProperty("edge_source") targetP = graph.getIntegerProperty("edge_target") sourceL = graph.getStringProperty("source_label") targetL = graph.getStringProperty("target_label") for e in graph.getEdges(): source, target = graph.ends(e) sourceP[e] = source.id targetP[e] = target.id...

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    Immensely useful dear Benjamin! I made huge steps in understanding tulip graphs. I am geting so close to the desired output, but not yet there: node_label = graph.getStringProperty("UrbanAgglomeration") sourceP = graph.getIntegerProperty("edge_source") targetP = graph.getIntegerProperty("edge_target") sourceL = graph.getStringProperty("source_label") targetL = graph.getStringProperty("target_label") for e in graph.getEdges(): source, target = graph.ends(e) sourceP[e] = source.id targetP[e] = target.id...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Immensely useful dear Benjamin! I mage huge steps in understanding tulip graphs. I am geting so close to the desired output, but not yet there: node_label = graph.getStringProperty("UrbanAgglomeration") sourceP = graph.getIntegerProperty("edge_source") targetP = graph.getIntegerProperty("edge_target") sourceL = graph.getStringProperty("source_label") targetL = graph.getStringProperty("target_label") for e in graph.getEdges(): source, target = graph.ends(e) sourceP[e] = source.id targetP[e] = target.id...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Dear Benjamin, since nodes have labels, they also can have custom propoerties, right? My nodes have a ccustom property called UrbanAgglomeration where labels are stored and CityCode . This is where the info I am looking for resides. My question is how to complete the src and tgt fields in the spreadsheet view and then in export witht these infos?

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    I tested witht the command: alain@PDXP13-D61NHR2:~/Documents/Logiciels/Tulip$ QT_SCALE_FACTOR=2 Tulip-5.3.1.AppImage It sends no error, good but then launch the appImage and the result is the same, too small icons

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    worked with QT_SCALE_FACTOR=2 ./Tulip-5.3.1.AppImage many thanks Patrick!! Long life to Tuilp!

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    the problem is that now it seems to run (no errors) but has no effect. I also tried to loop on edges instead of nodes, and still the property OriNodeLabel remains empty. In addition, what could be the instruction to populate the other extremity DesNodeLabel? In addition, this instruction seems to only copy the content of the property in another column of edges, the issue is that the intial colm=umn is now empty in edges view, this is probably why nothin occurs? I attach my graph.

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    the problem is that now it seems to run (no errors) but has no effect. I also tried to loop on edges instead of nodes, and still the property OriNodeLabel remains empty. In addition, what could be the instruction to populate the other extremity DesNodeLabel? In addition, this instruction seems to only copy the content of the property in another column of edges, the issue is that the intial colm=umn is now empty in edges view, this is probably why nothin occurs?

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    the problem is that now it seems to run (no errors) but has no effect. I also tried to loop on edges instead of nodes, and still the property OriNodeLabel remains empty. In addition, what could be the instruction to populate the other extremity DesNodeLabel?

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    there was an error in your proposal, we are dealing with strings here, not with Integers. This works: graph.getStringProperty("UrbanAgglomeration") for n in graph.getNodes(): graph["OriNodeLabel"][n] = graph["UrbanAgglomeration"][n]

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    with for n in graph.getNodes(): graph["OriNodeLabel"][n] = graph["UrbanAgglomeration"][n] starting at line 55 in the predefined script, I get an error Exception: Error : Unable to get node data as no graph property has been created through that proxy.

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    Hi Guy and Patick so true, long time no see but still regular Tulip user :) Something is evidently wrong in my script, I am sure you will immediately detect my error: for n in graph.getNodes(): graph["OriNodeLabel"][n] = n.UrbanAgglomeration In my graph I have introduced a new property called "OriNodeLabel" and in it I want to store the existing propery called "UrbanAgglomeration" I get an error: AttributeError: 'node' object has no attribute 'UrbanAgglomeration' In addition I do not perceive the...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Hi Guy and Patick so true, long time no see but still regular Tulip user :) Something is evidently wrong in my script, I am sure you will immediately detect my error: for n in graph.getNodes(): graph["OriNodeLabel"][n] = n.UrbanAgglomeration In my graph I hae introduced a new property called "OriNodeLabel" and in it I want to store the existing propery called "UrbanAgglomeration" I get an error: AttributeError: 'node' object has no attribute 'UrbanAgglomeration' In addition I do not perceive the...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    worked with QT_SCALE_FACTOR=2 ./Tulip-5.3.1.AppImage many thanks Patrick!! Long life to Tuilp!

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    I tested witht the command: alain@PDXP13-D61NHR2:~/Documents/Logiciels/Tulip$ QT_SCALE_FACTOR=2 Tulip-5.3.1.AppImage It sends no error, good but then launch the appImage and the result is the same, too small icons

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    I generated a graph in Tulip, I have custom node Id (long code + label + etc). What I want is to generate a csv table where these info would be clearly shown (and not only the internal Tulip id of nodes). Here are the coluns I want to see: id origin node, code orig node, label orig node, id dest node, code dest node, label dest node

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    I have a screen with high DPI (a Dell XPS 13) and Ubuntu. I want to use Tulip 5 The application window is not practicaly usable because toolbars and icons are too little to be seen How to deal with this and increase toolbars size?

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Hello all, I want to produce an image with many large three d cones as nodes. They...

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    Dear tulipists, all is said in the title, I would like to draw nodes (cities) as...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Dear tulipists, all is said in the title, I would like to draw nodes (cities) as...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Hello summer tulipists, I want to view very detailed GPS tracks in geogrpahical view....

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Dear Antoine, if I get it right, I should code the lat/lon control points of the...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    effectively I see that the tulip executable file in /usr/local/bin was created the...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Dear Antoine, I have compiled and installed the trunk version, but when I type 'tulip'...

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    much better this way better because the 1.4 Go snapshot zip file arrived corrupted...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    much this way better because the 1.4 Go snapshot zip file arrived corrupted on my...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Dear antoine, these are excellent news back form a few days in vacation!! Please...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    The problem worsens I have multiplied lat and lon by the factors that apparently...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    nice when it works, but more problems to come (in a new thread!)

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Dear all, I have produced a tlp file with GPS data in it. It is GPS tracks of cyclists...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    ah I solved my problem apparently less contact points did not solve the issue, but...

  • Alain L'Hostis Alain L'Hostis modified a comment on discussion Help

    Dear Guy, I will try to get rid of control points too close one to each other, this...

  • Alain L'Hostis Alain L'Hostis posted a comment on discussion Help

    Dear Guy, I will try to get rid of control points too close one to each other, this...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    Dear all, I have generated a tlp file out of GPS data. Edges have a layout following...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    All is said in the title, I can manage to compile and run Tulip 4.9 with the 'sudo...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    Dear Benjamin, valuable suggestion, but I am not at ease with scripts in Tulip. I...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    Ok Benjamin, this what I want to achieve, have edges with layout given by GPS points...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    Dear Tulipists I have a dataset of GPS tracks of bikes (first lines given below)....

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    Dear Guy, it's a pity Tulip does not have the Dijsktra algorithm in it, I thought...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    Hello tulip folks, I want to draw a network with edges size showing the enumber of...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    Hello tulip folks, I want to draw a network with edges size showing thr enumber of...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    Ah, last compile was ages ago, like in 2013, and only for tulip I downloaded sources...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    Hello Tulip people I am following the instruction of INSTALL.linux to compile tulip...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    Hello Tulipers, I found a problem in the Edge bundling algorithm. It crashes when...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    Hello Tulipers, I found a problem in the Edge bundling algorithm. It crashes when...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on ticket #777

    I have been able to reproduce this crash on a tulip 4.6 compiled by myself on ubuntu...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on ticket #781

    effectively this behaviour does not happen in a tulip 4.6 compiled for ubuntu 14.04!...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    needed packages for a fresh 14.04 compile, in addition to those asked in the install...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    needed packages for a fresh 14.04 compile, in addition to those asked in the install...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    needed packages for a fresh 14.04 compile, in addition to those asked in the install...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on ticket #781

    I am compiling Tulip in 14.04 on another machine and have to migrate to 14.04 on...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on ticket #781

    did what you suggested uploaded a Random General Graph produced in 4.6 Edge bundling...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on ticket #781

    did what you suggested uploaded a Random General Graph produced in 4.6 Edge bundling...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on ticket #781

    for debuging purposes some elements in the terminal after crash (tulip_perspective:20016):...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on ticket #781

    a work around 1 create graph using tulip 4.6 2 generate a geoview 3 store viewlayout...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on ticket #781

    a work around 1 create graph using tulip 4.6 2 generate a geoview 3 store viewlayout...

  • Alain L\'Hostis Alain L\'Hostis created ticket #781

    Tulip 4.6 Edge bundling problem

  • Alain L\'Hostis Alain L\'Hostis posted a comment on ticket #777

    the exact same steps you indicate in the video crashes my Tulip where can be the...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    this is solved in tulip 4.6 thanks tulip developers!

  • Alain L\'Hostis Alain L\'Hostis posted a comment on ticket #777

    happens also in tulip 4.6 ubuntu 13.10

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    1 finally stopped using the script 2 asked my local unix specialist 3 simply followed...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    1 finally stopped using the script 2 asked my local unix specialist 3 simply followed...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    1 finally stopped using the script 2 asked my local unix specialist 3 simply followed...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    1 finally stopped using the script 2 asked my local unix specialist 3 simply followed...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    1 finally stopped using the script 2 asked my local unix specialist 3 simply followed...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    reading again your message, it still seems ambiguous to me, possibly because English...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    reading again your message, it still seems ambiguous to me, possibly because English...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    reading again your message, it still seems ambiguous to me, possibly because English...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    reading again your message, it still seems ambiguous to me, possibly because English...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    couldn't find the compile output file, but I saw yesterday it stopped around 40%...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    couldn't find the compile output file, but I saw yesterday it stopped around 40%...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    couldn't find the compile output file, but I saw yesterday it stopped around 40%...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    couldn't find the compile output file, but I saw yesterday it stopped around 40%...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    couldn't find the compile output file, but I saw yesterday it stopped around 40%...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    couldn't to find the compile output file, but I saw yesterday it stopped around 40%...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    the problem remains tried to find the missing package and did not succeed even the...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    the problem remains tried to find the missing package and did not succeed even the...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    the problem remains tried to find the missing package and did not succeed even the...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    the problem remains tried to find the missing package and did not succeed even the...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    ah.... a big mistake while downloading the file from the web... now running real...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    ah.... a big mistake while downloading the file from the web... now running real...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    ah.... a big mistake while downloading the file from the web... now running real...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    ah.... a big mistake while downloading the file from the web... now running real...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    6 means line 6? this is this one <html lang="en" class=""> enigmatic to me...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    if it would allow me to run tulip, that would be great so you can no more help me...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    was using the classical terminal of Ubuntu now trying with zsh... exactly the same...

  • Alain L\'Hostis Alain L\'Hostis modified a comment on discussion Help

    ok, did that and now: ./setup.sh: 6: ./setup.sh: Syntax error: newline unexpected...

  • Alain L\'Hostis Alain L\'Hostis posted a comment on discussion Help

    ok, did that and now: ./setup.sh: 6: ./setup.sh: Syntax error: newline unexpecte...

1 >