Overview
Biological Assets represent Level 6 in CONFOR’s forest patrimony hierarchy — individual forest stands, plantations, or inventory units within Level 4 management units. This module tracks growth metrics, genetic material, management schemes, and economic valuation for accounting purposes.Biological assets are the “accounting units” that represent measurable forest value. They link operational forestry data with financial accounting systems.
Key Capabilities
Stand Inventory
Track volume, height, diameter, basal area, and tree density
Genetic Material
Document species, provenances, and genetic improvement programs
Growth Metrics
Calculate IMA (Mean Annual Increment) and site index classifications
Economic Valuation
Record establishment costs and fair value for accounting
Data Model
Biological Asset Schema
prisma/schema.prisma
Asset Types
prisma/schema.prisma
Creating Biological Assets
User Workflow
Create New Asset
Click New Biological Asset and fill in:
- Unique biological asset key (e.g.,
BA-RODAL-A1-2019-PC) - Establishment date and planting year
- Asset type (commercial or research)
Genetic Material
Document:
- Species (linked to species catalog)
- Genetic material code and name
- Provenance (origin)
- Plant type (seedling, clone, etc.)
Inventory Data
Enter measurement data:
- Inventory date and age
- Height and diameter metrics
- Volume calculations
- IMA classification
API Operations
Creating Assets
POST/api/forest/biological-assets
src/validations/forest-biological-asset.schema.ts
Querying Assets
GET/api/forest/biological-assets?level4Id={id}&search=PINO
Query Parameters:
level4Id: Filter by parent Level 4 unitsearch: Text search in biological asset key, accounting key, genetic materialsortBy: Sort field (default:biologicalAssetKey)sortOrder:ascordesc(default:asc)page: Page numberlimit: Items per page (max: 100)
Updating Assets
PATCH/api/forest/biological-assets/[id]
Update inventory data after measurements:
Deleting Assets
DELETE/api/forest/biological-assets/[id]
Permanently removes the biological asset record.
Genetic Material Management
Biological assets link to organization-specific genetic material catalogs:prisma/schema.prisma
Material Types
prisma/schema.prisma
IMA Classification
IMA (Incremento Medio Anual / Mean Annual Increment) classifies site productivity:prisma/schema.prisma
| Class | Range (m³/ha/year) | Site Quality |
|---|---|---|
| I | > 26 | Excellent |
| II | 22 - 26 | Good |
| III | 18 - 22 | Average |
| IV | 14 - 18 | Below Average |
| V | < 14 | Poor |
Spacing Configurations
Plantation spacing affects tree density and growth:prisma/schema.prisma
- 3x3: 1,111 trees/ha (intensive management)
- 3x2: 1,666 trees/ha (high density)
- 4x3: 833 trees/ha (moderate)
- 5x5: 400 trees/ha (extensive)
Volume Calculations
Biological assets track multiple volume metrics:- Unit Volume
- Total Volume
- Adjusted Volume
Volume per hectare:
unitVolumeM3NoBarkPerHa: Commercial volume (m³/ha)unitVolumeM3WithBarkPerHa: Total volume including bark
Growth Metrics
Diameter and Height
- Dominant Height (
dominantHeightM): Average height of dominant trees (used for site index) - Mean Height (
meanHeightM): Average height of all trees - Quadratic Diameter (
quadraticDiameterM): Square root of mean squared diameter (DBH)
Basal Area
basalAreaM2: Sum of cross-sectional areas of all trees at breast height per hectare
Calculation:
Survival Rate
survivalRate: Percentage of planted trees still alive
Management Schemes
Organizations define management approaches:prisma/schema.prisma
- INT-001: Intensive Management (fertilization, pruning, thinning)
- EXT-001: Extensive Management (minimal intervention)
- AGR-001: Agroforestry System
- CON-001: Conservation/Protection
Inventory Types
Different inventory methodologies:prisma/schema.prisma
- CENSO: Complete enumeration (100% of trees)
- MUESTREO: Statistical sampling
- ESTIMACION: Visual/expert estimation
- DASOMETRICO: Dasometric measurements
Import/Export
Bulk Import
POST/api/forest/biological-assets/import
Import biological assets from CSV/Excel:
Required columns:
nivel4: Level 4 code (parent unit)claveactivo: Biological asset key (unique)fechaestab: Establishment dateañoplantacion: Planting yearmaterialgen: Genetic materialvolumenm3: Volume m³ without bark
Bulk Export
GET/api/forest/biological-assets/export?level4Id={id}
Export to CSV or Excel for analysis in external tools.
Best Practices
Naming Conventions
Naming Conventions
- Use consistent biological asset keys:
BA-{LEVEL4}-{YEAR}-{SPECIES} - Link accounting keys to financial systems
- Document genetic material sources
Inventory Frequency
Inventory Frequency
- Young plantations (0-5 years): Annual measurements
- Growing stands (5-15 years): Every 2-3 years
- Mature stands (15+ years): Every 3-5 years
- Update IMA classification after each inventory
Data Quality
Data Quality
- Validate volumes against expected growth curves
- Cross-check basal area and tree density
- Verify survival rates are realistic
- Document inventory methodology
Economic Valuation
Economic Valuation
- Record all establishment costs
- Update fair value based on market prices
- Track costs per hectare for budgeting
- Maintain cost history for analysis
Related Documentation
- Forest Patrimony - Understanding the hierarchy (Levels 2-5)
- Land Accounting - Tracking land use changes
- API Reference - Biological Assets API