Re: The Equatorial Wind
Reply #21 –
Did I forget? Maybe not. And I learned what I am after should not be called moisture map, but precipitation... shame on me 
It works, but creating a feasible... something... requires some ocean around, or the method hopelessly fails. Some more tweaking of parameters could reveal a setup which works for both coastal and inland maps. Or so I hope.
How it works, in short - first create a heightfield like inside Simutrans, then apply gaussian blur (radius 25, uff) to get rid of stairs-like nature, run over with direction operator, and this is gradient. Second, go in stripes (1 tile wide) over the map in direction of wind and do the raining thing. That is - when p****ing over water, gather it, otherwise first gather small fixed amount, drop small fixed amount, plus drop amount depending on gradient of tile. Attached below is the full code.
Currently the configuration part looks like this.
imgfile = 'Tasmania_637x595.ppm';
% what to load
dirop = [...
1 1 1 ;...
0 -3 0 ;...
0 0 0 ];
% the direction where the ones are "bluntly aimed to" in respect to -3 is
% where wind comes from
water_starting = 200; % enter map on edge with this amount
water_drop_base = 20; % multiplied by slope gradient
water_drop_always = 5; % always dropped
water_add_always = 6; % always added (these two do clash a bit)
water_add_ocean = 100; % added when p****ing over water
water_max_capacity = inf; % maximum the wind can carry
Britain, wind from north-west


Britain, wind from south-west


Panama, wind from north-east


Switzerland, wind from north


Tasmania, wind from north
