Changeset 3942 for palm/trunk/SOURCE/netcdf_data_input_mod.f90
- Timestamp:
- Apr 30, 2019 1:08:30 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/netcdf_data_input_mod.f90
r3941 r3942 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Fix: increase LEN of all NetCDF attribute values (caused crash in 28 ! netcdf_create_global_atts due to insufficient length) 29 ! 30 ! 3941 2019-04-30 09:48:33Z suehring 27 31 ! Move check for grid dimension to an earlier point in time when first array 28 32 ! is read. … … 638 642 !-- attribute. 639 643 TYPE global_atts_type 640 CHARACTER(LEN= 12 ) :: acronym!< acronym of institution644 CHARACTER(LEN=200) :: acronym = ' ' !< acronym of institution 641 645 CHARACTER(LEN=7) :: acronym_char = 'acronym' !< name of attribute 642 CHARACTER(LEN=200) :: author 646 CHARACTER(LEN=200) :: author = ' ' !< first name, last name, email adress 643 647 CHARACTER(LEN=6) :: author_char = 'author' !< name of attribute 644 CHARACTER(LEN= 12) :: campaign = 'PALM-4U' !< name of campaign648 CHARACTER(LEN=200) :: campaign = 'PALM-4U' !< name of campaign 645 649 CHARACTER(LEN=8) :: campaign_char = 'campaign' !< name of attribute 646 CHARACTER(LEN=200) :: comment 650 CHARACTER(LEN=200) :: comment = ' ' !< comment to data 647 651 CHARACTER(LEN=7) :: comment_char = 'comment' !< name of attribute 648 CHARACTER(LEN=200) :: contact_person 652 CHARACTER(LEN=200) :: contact_person = ' ' !< first name, last name, email adress 649 653 CHARACTER(LEN=14) :: contact_person_char = 'contact_person' !< name of attribute 650 654 CHARACTER(LEN=200) :: conventions = 'CF-1.7' !< netCDF convention 651 655 CHARACTER(LEN=11) :: conventions_char = 'Conventions' !< name of attribute 652 CHARACTER(LEN=23 ) :: creation_time 656 CHARACTER(LEN=23 ) :: creation_time = ' ' !< creation time of data set 653 657 CHARACTER(LEN=13) :: creation_time_char = 'creation_time' !< name of attribute 654 CHARACTER(LEN= 16 ) :: data_content!< content of data set658 CHARACTER(LEN=200) :: data_content = ' ' !< content of data set 655 659 CHARACTER(LEN=12) :: data_content_char = 'data_content' !< name of attribute 656 CHARACTER(LEN=200) :: dependencies 660 CHARACTER(LEN=200) :: dependencies = ' ' !< dependencies of data set 657 661 CHARACTER(LEN=12) :: dependencies_char = 'dependencies' !< name of attribute 658 CHARACTER(LEN=200) :: history 662 CHARACTER(LEN=200) :: history = ' ' !< information about data processing 659 663 CHARACTER(LEN=7) :: history_char = 'history' !< name of attribute 660 CHARACTER(LEN=200) :: institution 664 CHARACTER(LEN=200) :: institution = ' ' !< name of responsible institution 661 665 CHARACTER(LEN=11) :: institution_char = 'institution' !< name of attribute 662 CHARACTER(LEN=200) :: keywords 666 CHARACTER(LEN=200) :: keywords = ' ' !< keywords of data set 663 667 CHARACTER(LEN=8) :: keywords_char = 'keywords' !< name of attribute 664 CHARACTER(LEN=200) :: licence 668 CHARACTER(LEN=200) :: licence = ' ' !< licence of data set 665 669 CHARACTER(LEN=7) :: licence_char = 'licence' !< name of attribute 666 CHARACTER(LEN=200) :: location 670 CHARACTER(LEN=200) :: location = ' ' !< place which refers to data set 667 671 CHARACTER(LEN=8) :: location_char = 'location' !< name of attribute 668 672 CHARACTER(LEN=10) :: origin_lat_char = 'origin_lat' !< name of attribute … … 674 678 CHARACTER(LEN=8) :: origin_z_char = 'origin_z' !< name of attribute 675 679 CHARACTER(LEN=12) :: palm_version_char = 'palm_version' !< name of attribute 676 CHARACTER(LEN=200) :: references 680 CHARACTER(LEN=200) :: references = ' ' !< literature referring to data set 677 681 CHARACTER(LEN=10) :: references_char = 'references' !< name of attribute 678 682 CHARACTER(LEN=14) :: rotation_angle_char = 'rotation_angle' !< name of attribute 679 CHARACTER(LEN= 12 ) :: site!< name of model domain683 CHARACTER(LEN=200) :: site = ' ' !< name of model domain 680 684 CHARACTER(LEN=4) :: site_char = 'site' !< name of attribute 681 CHARACTER(LEN=200) :: source 685 CHARACTER(LEN=200) :: source = ' ' !< source of data set 682 686 CHARACTER(LEN=6) :: source_char = 'source' !< name of attribute 683 CHARACTER(LEN=200) :: title 687 CHARACTER(LEN=200) :: title = ' ' !< title of data set 684 688 CHARACTER(LEN=5) :: title_char = 'title' !< name of attribute 685 689 CHARACTER(LEN=7) :: version_char = 'version' !< name of attribute
Note: See TracChangeset
for help on using the changeset viewer.