/* v2 BeforeAfter — "Per què ara": 67% bosc català sense IOF */ const V2BeforeAfter = () => { const wrap = React.useRef(null); const [pos, setPos] = React.useState(50); const dragging = React.useRef(false); const updateFromClientX = (clientX) => { if (!wrap.current) return; const rect = wrap.current.getBoundingClientRect(); const p = ((clientX - rect.left) / rect.width) * 100; setPos(Math.max(4, Math.min(96, p))); }; React.useEffect(() => { const onMove = (e) => { if (!dragging.current) return; const x = e.touches ? e.touches[0].clientX : e.clientX; updateFromClientX(x); }; const onUp = () => { dragging.current = false; document.body.style.cursor = ""; }; window.addEventListener("mousemove", onMove); window.addEventListener("touchmove", onMove, { passive: true }); window.addEventListener("mouseup", onUp); window.addEventListener("touchend", onUp); return () => { window.removeEventListener("mousemove", onMove); window.removeEventListener("touchmove", onMove); window.removeEventListener("mouseup", onUp); window.removeEventListener("touchend", onUp); }; }, []); const start = (e) => { dragging.current = true; document.body.style.cursor = "ew-resize"; const x = e.touches ? e.touches[0].clientX : e.clientX; updateFromClientX(x); }; return (
El bosc català, en xifres

El 67% del bosc català no té IOF vigent.
Algun dia caldrà gestionar-lo.

500.000 hectàrees treballen amb un instrument d'ordenació forestal. 1,39 milions ho fan sense. Cada any la diferència s'eixampla, les bases reguladores canvien i un sol enginyer porta entre 20 i 50 finques al mateix temps.

Bosc sense IOF vigent
Bosc amb gestió planificada
Sense IOF · 67% Amb pla de gestió · 33%
1,39 M
ha sense IOF
~1.000
enginyers a CAT
4.400
IOF vigents
500.000 ha
gestió planif.
Sense IOF vigent

1,39 milions d'hectàrees de bosc català sense instrument d'ordenació forestal. Cap historial, cap planificació d'actuacions, cap accés a ajuts SIDER. Un mercat que algun dia caldrà gestionar, peça per peça, finca per finca.

Amb pla de gestió

500.000 hectàrees amb IOF o PTGMF vigent. Plans amb 15-20 anys de vigència, actuacions planificades any per any i convocatòries d'ajuts obertes contínuament. Tota aquesta feina avui es gestiona amb Word, Excel i carpetes de documents.

); }; window.V2BeforeAfter = V2BeforeAfter;