Re: [Therion] A wtherion update

2024-04-17 Thread Yann Gardère
Hello

I have not yet tested in depth or in real topographical drawing conditions,
but it is really great to be able to see the visual result of the lines
without generating a PDF, I will test in my next topo, thank you very much !

Yann


Le lun. 15 avr. 2024 à 22:26, Csongor Zih  a
écrit :

> Hi everyone!
>
> I have an update to share regarding wtherion, which you hopefully
> remember is my project for a web-based Therion map editor to replace
> XTherion's map editing capabilities:
> https://github.com/daem-on/wtherion
>
> I just spent the last two weeks rewriting the UI of wtherion, which
> was originally a fork of a vector editing application, migrating the
> parts that used jQuery to Vue. The canvas library and most of the
> editing logic are the same, this change just means the editor UI can
> be even more dynamic, complex and useful than before. This eliminated
> a lot of unnecessary or overly complex code left from the vector
> editor, and I hope in the future this will make it easier to maintain
> and add new features to.
>
> Some of the more visible changes include:
> - New layout and new UI styles
> - Shortcuts icons for common actions
> - Keybinds can be configured (this is not persisted yet)
> - All select lists (including points/symbols) have preview images
> - UI language can be changed at runtime
> - New rendering capabilities
>
> This last one I'm especially happy about, it's a step towards actual
> WYSIWYG editing, although that is not planned for this project.
> Currently you can see, in real time, while editing, what your 'slope',
> 'pit' or 'overhang' lines might look like when compiled. The main
> limiting factor here is performance, since I don't know how capable
> the average user's hardware will be, I tried to keep it optimised, and
> I added a toggle for it in the toolbar.
>
> I'm planning on releasing a 1.0 version of wtherion in the future, but
> I would like to hear feedback on this development version, which can
> be reached at beta.wtherion.daemonw.com (this is also linked in the
> GitHub repo). If you have suggestions on how it should work
> differently, if it's not working well for your workflow, or if you
> find a bug, please let me know here, or create an issue on GitHub.
>
> I can't make any guarantee as to the timeline of development, or how
> quickly I'll respond. Admittedly, I haven't worked on this project
> very actively in the last two years, but right now I want to spend
> more time on it.
>
> The scope of the project hasn't really changed, but I'd be interested
> to work on other projects that plan to replace the whole of XTherion,
> or even replace text based editing.
>
> Csongor
> ___
> Therion mailing list
> Therion@speleo.sk
> https://mailman.speleo.sk/listinfo/therion
>
___
Therion mailing list
Therion@speleo.sk
https://mailman.speleo.sk/listinfo/therion


[Therion] Space between altitude / line

2024-02-24 Thread Yann Gardère
Hello therion users


when I put the automatic altitude option on a line,
the altitude appears too close (tight, stuck, ...) to the line,

is there a way to define the distance of the altitude figure from at the
line ?

thanks

Yann
___
Therion mailing list
Therion@speleo.sk
https://mailman.speleo.sk/listinfo/therion


Re: [Therion] Background map-header

2023-09-10 Thread Yann Gardère
Thank you for your response Martin,

in fact I am looking for ways to personalize the generated PDF

Therion is excellent but I find that the "map-header" frames are very
similar across all the topos that therion users share.
If isn't possible to change color, maybe there is a way to make a nice
border around the map header?

Yann

(Sorry, translate version ..)




Le dim. 10 sept. 2023 à 18:10, Martin Budaj  a écrit :

> Hi,
>
> the header background colour is hard-coded to be the same as the map
> background so it can't be changed without modifying the program. What's
> your use case to have a different colour?
>
> Martin
>
> On Fri, Sep 8, 2023 at 8:05 PM Yann Gardère 
> wrote:
>
>>
>> Hello therion users
>>
>> On Therion I would like to apply a particular background color for the
>> "map-header" different from the background color of the map, does anyone
>> have a tex-map or metapost code to send me to do this?
>>
>> I don't find this in therion's wiki
>>
>> Thanks [image: ]
>>
>> Yann
>>
>>
>>
>>
>> ___
>> Therion mailing list
>> Therion@speleo.sk
>> https://mailman.speleo.sk/listinfo/therion
>>
> ___
> Therion mailing list
> Therion@speleo.sk
> https://mailman.speleo.sk/listinfo/therion
>
___
Therion mailing list
Therion@speleo.sk
https://mailman.speleo.sk/listinfo/therion


[Therion] Background map-header

2023-09-08 Thread Yann Gardère
Hello therion users

On Therion I would like to apply a particular background color for the
"map-header" different from the background color of the map, does anyone
have a tex-map or metapost code to send me to do this?

I don't find this in therion's wiki

Thanks [image: ]

Yann
___
Therion mailing list
Therion@speleo.sk
https://mailman.speleo.sk/listinfo/therion


[Therion] coupe et plan

2016-02-04 Thread Yann Gardère
Merci Bertrand, après avoir tout réorganisé ta solution me convient :)

Le 4 février 2016 à 16:02, Bertrand Hauser  a
écrit :

> Salut,
>
> Mes fichiers th2 sont indépendants de la vue finale. Personnellement, je
> sépare les plan et les coupes. Je découpe aussi mes plans (et mes coupes)
> en plusieurs fichiers quand la cavité est importante.
> Dans mon thconfig, j'intègre les 2 vues (plan et coupe) à l'aide de
> l'instruction map-image.
>
> Mon thconfig a en gros cette organisation :
>
> source cavite.th
> input ../layout-standard.thconfig #je mets dedans tout ce qui est
> générique à toutes mes topos
> layout maCoupe
>  # les directives concernant ma coupe
> endlayout
> layout monPlan
>  # les directives concernant mon plan
> endlayout
> layout lesDeuxEnsemble
> copy monPlan
> map-image  x  y  orig exports/cavite-coupe.pdf
> endlayout
> #je fais cet export uniquement pour qu'il soit récupéré et intégré dans 
> le
> plan
> export map -projection extended -o exports/cavite-coupe.pdf -layout
> maCoupe
> # je génére mon plan et y intègre ma coupe.
> export map -projection plan -o exports/cavite-plan-et-coupe.pdf -layout
> lesDeuxEnsemble
>
> Si d'ailleurs il y a de meilleurs manières de faire, je suis preneur...
> Bonnes explos,
> Bertrand
>
> Le 4 février 2016 à 15:30, Yann Gardère  a 
> écrit :
>
>>
>> Bonjour,
>>
>> Pour ne pas faire n'importe quoi je sollicite votre aide, je souhaiterai
>> au final avoir le plan et la coupe dev. sur un même pdf, quel est la
>> meilleure solution ?
>>
>> - 1 fichier th2 par vue que l'on assemble ensuite
>>
>> ou
>>
>> - Le même fichier th2 pour les 2 vues
>>
>> ensuite j'en vient a ma seconde question, dan l'hypothese que je
>> choisisse un seul fichier th2 pour les 2 vues et que je veuille
>> repositionner par exemple la vue en plan par rapport a la vue en coupe
>> dev., comment faire faire pour deplacer un ensemble de ligne en même temps
>> (toute la vue en plan) ? (je n'arrive qu'a deplacer qu'un point a la fois)
>>
>> merci
>>
>> Gardère Yann
>>
>> ___
>> Therion mailing list
>> Therion at speleo.sk
>> http://mailman.speleo.sk/mailman/listinfo/therion
>>
>>
>
> ___
> Therion mailing list
> Therion at speleo.sk
> http://mailman.speleo.sk/mailman/listinfo/therion
>
>
-- next part --
An HTML attachment was scrubbed...
URL: 



[Therion] Ouverture pdf

2016-02-03 Thread Yann Gardère
Je vient de trouver le code qui fonctionne (par ladislav)

code metapost
def a_water_MY (expr p) =
T:=identity;
thfill p withcolor (0,0,1);
enddef;
initsymbol("a_water_MY");
endcode

symbol-assign area water MY

Le 3 février 2016 à 08:56, Yann Gardère  a écrit 
:

> Merci Bertrand et Pavel!
>
> Effectivement en changeant de viewer pdf ca fonctionne car la compilation
> plante avec adobe ouvert!
>
>
> Je bloque aussi sur quelque chose pour créer des surfaces bleu (eau comme
> dans l'exemple rabbit), j'ai insérer le code :
>
>   code metapost
>   def a_water (expr p) =
> T:=identity;
> thfill p withcolor (0.0, 0.5, 1.0);
>   enddef;
>  endcode
>
> dans mon layer
>
> j'ai beau insérer des area de type "Aera water" dans mon dessin, mais ca
> fait toujours des vagues a la place d'une surface bleu, je n'arrive pas a
> reproduire l'exemple rabbit, avez vous une idée ?
>
>
> Merci encore
>
> Le 3 février 2016 à 08:50, Pavel Herich  a écrit :
>
>> Bonjour,
>> Je travaille avec un SumatraPDF (
>> http://www.sumatrapdfreader.org/free-pdf-reader.html), parce que le pdf
>> ducument n´est pas fermé la bas - tu peux le compile sans débranchement.
>> Pavel
>>
>> Dňa 2016-02-03 08:04 Yann Gardère napísal(a):
>>
>>> Bonjour,
>>>
>>> Peut t'on automatiser l'ouverture du pdf généré à chaque
>>> compilation de la cavité ?
>>>
>>> Je n'ai pas trouvé d'autre moyen que de regarder manuellement le
>>> résultat de chaque nouvel élément graphique en ouvrant manuellement
>>> le pdf suite à la compilation
>>>
>>> Merci!
>>>
>>> Gardère Yann
>>>
>>> ___
>>> Therion mailing list
>>> Therion at speleo.sk
>>> http://mailman.speleo.sk/mailman/listinfo/therion
>>>
>> ___
>> Therion mailing list
>> Therion at speleo.sk
>> http://mailman.speleo.sk/mailman/listinfo/therion
>>
>
>
-- next part --
An HTML attachment was scrubbed...
URL: 



[Therion] Ouverture pdf

2016-02-03 Thread Yann Gardère
Merci Bertrand et Pavel!

Effectivement en changeant de viewer pdf ca fonctionne car la compilation
plante avec adobe ouvert!


Je bloque aussi sur quelque chose pour créer des surfaces bleu (eau comme
dans l'exemple rabbit), j'ai insérer le code :

  code metapost
  def a_water (expr p) =
T:=identity;
thfill p withcolor (0.0, 0.5, 1.0);
  enddef;
 endcode

dans mon layer

j'ai beau insérer des area de type "Aera water" dans mon dessin, mais ca
fait toujours des vagues a la place d'une surface bleu, je n'arrive pas a
reproduire l'exemple rabbit, avez vous une idée ?


Merci encore

Le 3 février 2016 à 08:50, Pavel Herich  a écrit :

> Bonjour,
> Je travaille avec un SumatraPDF (
> http://www.sumatrapdfreader.org/free-pdf-reader.html), parce que le pdf
> ducument n´est pas fermé la bas - tu peux le compile sans débranchement.
> Pavel
>
> Dňa 2016-02-03 08:04 Yann Gardère napísal(a):
>
>> Bonjour,
>>
>> Peut t'on automatiser l'ouverture du pdf généré à chaque
>> compilation de la cavité ?
>>
>> Je n'ai pas trouvé d'autre moyen que de regarder manuellement le
>> résultat de chaque nouvel élément graphique en ouvrant manuellement
>> le pdf suite à la compilation
>>
>> Merci!
>>
>> Gardère Yann
>>
>> ___
>> Therion mailing list
>> Therion at speleo.sk
>> http://mailman.speleo.sk/mailman/listinfo/therion
>>
> ___
> Therion mailing list
> Therion at speleo.sk
> http://mailman.speleo.sk/mailman/listinfo/therion
>
-- next part --
An HTML attachment was scrubbed...
URL: 



[Therion] Ouverture pdf

2016-02-03 Thread Yann Gardère
Bonjour,

Peut t'on automatiser l'ouverture du pdf généré à chaque compilation de la
cavité ?

Je n'ai pas trouvé d'autre moyen que de regarder manuellement le résultat
de chaque nouvel élément graphique en ouvrant manuellement le pdf suite à
la compilation

Merci!

Gardère Yann
-- next part --
An HTML attachment was scrubbed...
URL: