feat(csv): add timestamp parsing with timezone support
Extends the `read-csv` command to automatically identify and normalize timestamp columns into the ISO 8601 format. This makes the output data more consistent and ready for downstream processing or database ingestion. Key features include: - A new `--timestamp-column` option to specify one or more source columns from the CSV file that should be treated as timestamps. - A new `--default-tz` option to apply a default timezone to naive timestamps. This option flexibly accepts both IANA names (e.g., "Europe/Rome") and UTC offsets (e.g., "+02:00"). - The underlying parsing logic is robust, handling multiple common date and time formats automatically.
Loading
Please register or sign in to comment