bexis / Module_ResearchAreaManagement

A tool to manage research areas. You can define the shape of your main plots and draw subplots inside. You can plan the localization of field experiments. You can use maps for orientation in the field. As you will keep the history of the subplots, you will always be able to distribute prospective subplots. Module for Core @BEXIS2.
0 stars 0 forks source link

Adjust line width for some subplots manually #67

Closed aostrow closed 3 years ago

aostrow commented 3 years ago

Some widths needs to be adapted manually:

aostrow commented 3 years ago

all thicker:


UPDATE public.pmm_geometryinformation SET
linewidth = '2'::smallint 
WHERE
geometrytype = 'linestring' and status = '1'
```;
aostrow commented 3 years ago

loggin trial thicker

UPDATE public.pmm_geometryinformation SET
linewidth = '10'::smallint 
WHERE
status = '1'
and name LIKE '%logging trail%'
or name = 'path'
or name LIKE '%forest road%';

but also keeps underlying stuff readbale:

UPDATE public.pmm_geometryinformation SET
color = '#000000AA'::character varying(255)
WHERE
status = '1'
and name LIKE '%logging trail%'
or name = 'path'
or name LIKE '%forest road%';
aostrow commented 3 years ago

fences thicker:

UPDATE public.pmm_geometryinformation SET
linewidth = '2'::smallint 
--select * from public.pmm_geometryinformation
WHERE
status = '1'
and name LIKE '%ence%'
and name NOT LIKE '%Core 6%'
and name NOT LIKE '%LitterLinks%'
;
aostrow commented 3 years ago

all borders of new grassland experiments thicker

UPDATE public.pmm_geometryinformation SET
linewidth = '2'::smallint WHERE
name = 'LanduseExp - BSE' and status = '1';

UPDATE public.pmm_geometryinformation SET
linewidth = '2'::smallint WHERE
name = 'LanduseExp - F-0' and status = '1';