Re: [Therion] Symbol assign - use metapost def instead

2020-11-02 Thread Martin Sluka via Therion
Anyway you may hack the file thTrans.mp

Martin

> 2. 11. 2020 v 10:08, Pavel Herich :
> 
> It does work, thank You!
> Pavel
> 
> Dňa 2020-11-02 09:25 Bruce Mutton napísal(a):
>> I have done exactly that, but with conjectural water to be shown with
>> the permanent water symbol.
>> Need to use a little metapost in your layout...
>>  #replace conjectural waterflow symbol with permanent symbol to
>> improve visibility
>>  code metapost
>>  def l_waterflow_conjectural (expr Path) =
>>l_waterflow_permanent_UIS (Path);
>>  enddef;
>>  endcode
>> You need to do a similar thing with the definition of your debris and
>> presumed wall lines to show instead as bedrock.
>> Bruce
>> -Original Message-
>> From: Therion  On Behalf Of Pavel Herich
>> Sent: Monday, 2 November 2020 20:27
>> To: List for Therion users 
>> Subject: [Therion] Symbol assign
>> Hi,
>> when exporting maps to a large scale, I´d like to assign wall:debris,
>> wall:presumed etc. to just "wall". "Symbol-assign line wall:debris
>> wall:bedrock" in config file doesn´t work, any idea?
>> Thank you
>> Pavel
>> ___
>> 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 mailing list
Therion@speleo.sk
https://mailman.speleo.sk/listinfo/therion


Re: [Therion] Symbol assign - use metapost def instead

2020-11-02 Thread Pavel Herich

It does work, thank You!
Pavel

Dňa 2020-11-02 09:25 Bruce Mutton napísal(a):

I have done exactly that, but with conjectural water to be shown with
the permanent water symbol.
Need to use a little metapost in your layout...

  #replace conjectural waterflow symbol with permanent symbol to
improve visibility
code metapost
def l_waterflow_conjectural (expr Path) =
  l_waterflow_permanent_UIS (Path);
enddef;
endcode

You need to do a similar thing with the definition of your debris and
presumed wall lines to show instead as bedrock.
Bruce

-Original Message-
From: Therion  On Behalf Of Pavel Herich
Sent: Monday, 2 November 2020 20:27
To: List for Therion users 
Subject: [Therion] Symbol assign

Hi,
when exporting maps to a large scale, I´d like to assign wall:debris,
wall:presumed etc. to just "wall". "Symbol-assign line wall:debris
wall:bedrock" in config file doesn´t work, any idea?
Thank you
Pavel
___
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


Re: [Therion] Symbol assign - use metapost def instead

2020-11-02 Thread Benedikt Hallinger

I just did that with the AUT symbol set and it looks good:

--- snip 
layout 
...

code metapost
def l_wall_underlying_UIS (expr Path) = 
l_wall_bedrock_UIS (Path); enddef;
def l_wall_presumed_UIS (expr Path) = l_wall_bedrock_UIS 
(Path); enddef;
def l_wall_pit_AUT (expr Path) = l_wall_bedrock_UIS 
(Path); enddef;
def l_wall_sand_AUT (expr Path) = l_wall_bedrock_UIS 
(Path); enddef;
def l_wall_clay_AUT (expr Path) = l_wall_bedrock_UIS 
(Path); enddef;
def l_wall_pebbles_AUT (expr Path) = l_wall_bedrock_UIS 
(Path); enddef;
def l_wall_debris_AUT (expr Path) = l_wall_bedrock_UIS 
(Path); enddef;
def l_wall_blocks_AUT (expr Path) = l_wall_bedrock_UIS 
(Path); enddef;
def l_wall_ice_AUT (expr Path) = l_wall_bedrock_UIS 
(Path); enddef;
def l_wall_underlying_AUT (expr Path) = 
l_wall_bedrock_UIS (Path); enddef;
def l_wall_overlying_AUT (expr Path) = 
l_wall_bedrock_UIS (Path); enddef;
def l_wall_moonmilk_AUT (expr Path) = l_wall_bedrock_UIS 
(Path); enddef;
def l_wall_flowstone_AUT (expr Path) = 
l_wall_bedrock_UIS (Path); enddef;

endcode

...
endlayout
--- snap --


Am 2020-11-02 9:25, schrieb Bruce Mutton:

I have done exactly that, but with conjectural water to be shown with
the permanent water symbol.
Need to use a little metapost in your layout...

  #replace conjectural waterflow symbol with permanent symbol to
improve visibility
code metapost
def l_waterflow_conjectural (expr Path) =
  l_waterflow_permanent_UIS (Path);
enddef;
endcode

You need to do a similar thing with the definition of your debris and
presumed wall lines to show instead as bedrock.
Bruce

-Original Message-
From: Therion  On Behalf Of Pavel Herich
Sent: Monday, 2 November 2020 20:27
To: List for Therion users 
Subject: [Therion] Symbol assign

Hi,
when exporting maps to a large scale, I´d like to assign wall:debris,
wall:presumed etc. to just "wall". "Symbol-assign line wall:debris
wall:bedrock" in config file doesn´t work, any idea?
Thank you
Pavel
___
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