(ha: number)
| 13 | |
| 14 | // Helper: convert hectares to acres |
| 15 | export function haToAcres(ha: number): number { |
| 16 | return Math.round(ha * 2.47105 * 10) / 10; |
| 17 | } |
| 18 | |
| 19 | // No default fields - users create their own |
| 20 | export const fields: Field[] = []; |
no outgoing calls
no test coverage detected