Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase string length for netCDF variable name #248

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

##[ Unreleased 3.7.2] - TBD
### Changed
- Increased netCDF variable string length from 50 to 100

## [3.7.1] - 2023-10-10
### Changed
- Updated version numbers to 3.7.1
2 changes: 1 addition & 1 deletion src/Core/hco_config_mod.F90
Original file line number Diff line number Diff line change
@@ -635,7 +635,7 @@ SUBROUTINE Config_ReadCont( HcoConfig, IU_HCO, CFDIR, &
LOGICAL :: Found
CHARACTER(LEN= 63) :: cName
CHARACTER(LEN=255) :: srcFile
CHARACTER(LEN= 50) :: srcVar
CHARACTER(LEN=100) :: srcVar
CHARACTER(LEN= 31) :: srcTime
CHARACTER(LEN= 31) :: TmCycle
CHARACTER(LEN= 1) :: WildCard
2 changes: 1 addition & 1 deletion src/Core/hco_types_mod.F90
Original file line number Diff line number Diff line change
@@ -338,7 +338,7 @@ MODULE HCO_TYPES_MOD
!-------------------------------------------------------------------------
TYPE :: FileData
CHARACTER(LEN=255) :: ncFile ! file path+name
CHARACTER(LEN= 50) :: ncPara ! file parameter
CHARACTER(LEN=100) :: ncPara ! file parameter
INTEGER :: ncYrs(2) ! year range
INTEGER :: ncMts(2) ! month range
INTEGER :: ncDys(2) ! day range