Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update LDENPointNoiseMapFactory.java
Description: This change updates the precision of numeric columns from (5,2) to (9,2) in the forgeCreateTable method. Reason for Change: The previous precision (5,2) caused the error: "Value too long for column 'HZ8000 NUMERIC(5, 2)'" This issue typically occurs when the propagation distance exceeds 3000 meters, resulting in values that exceed the allowed range. Proposed Fix: Update the numeric(5,2) columns to numeric(9,2) for fields LAEQ, LEQ, and frequency-related columns (HZ*). This ensures compatibility with larger numerical values generated in scenarios with significant propagation distances. Impact: Resolves the numerical precision issue for long propagation distances. Prevents runtime errors when inserting large numerical values into frequency (HZ*) and acoustic level (LAEQ, LEQ) columns.
- Loading branch information