Fortran To read a binary file using fortran

Click For Summary
The discussion centers on reading a text file in Fortran that contains structured data, specifically years and corresponding monthly values. The user has shared their Fortran code, which successfully opens the file and reads the data into a two-dimensional array. However, the output format is not as expected, displaying all data in a single line rather than in a structured format. Suggestions include using FORMAT statements to control the output format and considering the use of separate arrays for years and monthly data to facilitate better organization and calculations. The user also seeks guidance on summing the monthly values from June to September for each year from 1901 to 2010, emphasizing their inexperience with Fortran and the need for clearer output and calculations. The clarification that the file is a text file, not a binary file, is also noted.
Rems
Messages
4
Reaction score
0
I am trying to read a binary file using fortran.
this is how the binary file looks like.

1901 109.1000 241.4000 284.2000 121.9000

1902 104.0000 283.7000 202.6000 201.9000

1903 114.8000 293.0000 279.6000 204.4000

1904 158.8000 266.4000 210.4000 129.6000

1905 88.70000 252.5000 202.6000 174.6000

1906 176.9000 285.8000 259.8000 179.8000

1907 150.1000 223.5000 311.6000 95.10000

1908 125.4000 331.5000 317.0000 153.8000 and so on

This is my code

PROGRAM read_data
IMPLICIT NONE

integer ::i,j
REAl , dimension(5,110)::a

!a(1,*)=year
!a(2,*)=june
!a(3,*)=july
!a(4,*)=august
!a(5,*)=september

open (55,file='data_ISMR',status='old')
open (66,file='output4.txt',status='new')

read (55,*) a
write(66,*) a

close(55)
END PROGRAM read_data
~
There is no error in the program. But result is not displayed properly. this is how it looks like

1901.000 109.1000 241.4000 284.2000 121.9000 1902.000 104.0000 283.7000 202.6000 201.9000 1903.000 114.8000 293.0000 279.6000 204.4000 1904.000 158.8000 266.4000 210.4000 129.6000 1905.000 88.70000 252.5000 202.6000 174.6000 1906.000 176.9000 285.8000 259.8000 179.8000 1907.000 150.1000 223.5000 311.6000 95.10000 1908.000 125.4000 331.5000 317.0000 153.8000 1909.000 205.0000 and so on

any suggestions how to improve the program?
also i want to find the sum of june,july,august,september for each year and add it all together from year 1901 to 2010.
i am new to fortran. anybody having any suggestions?
 
Technology news on Phys.org
But result is not displayed properly.

What do you want it to look like?
 
I'm puzzled as to why you say you want to read a binary file and then you display what seems to clearly be a text file.
 
1. If you want the output from the file to look different, then you need to decide on what format you desire and use FORMAT statements with WRITE statements, instead of relying on the default output format.

2. As your program now stands, you read in your data into one big array and then print out the big array, without doing any sorting of the data. Have you considered using more than one array, say an array for the Year, and similar arrays for the monthly data (whatever it may be)? With proper programming, Fortran can be quite versatile at reading and sorting your data.

3. If you want to do calculations on the data after it is read, then you will have to add the proper calculation statements to your program. This will be easier if you look at comment 2 above.
 
  • Like
Likes 1 person
phinds said:
I'm puzzled as to why you say you want to read a binary file and then you display what seems to clearly be a text file.

sorry. that was a mistake. its text file. i want to open the file using fortran and do the calculations
 
Learn If you want to write code for Python Machine learning, AI Statistics/data analysis Scientific research Web application servers Some microcontrollers JavaScript/Node JS/TypeScript Web sites Web application servers C# Games (Unity) Consumer applications (Windows) Business applications C++ Games (Unreal Engine) Operating systems, device drivers Microcontrollers/embedded systems Consumer applications (Linux) Some more tips: Do not learn C++ (or any other dialect of C) as a...

Similar threads

  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 12 ·
Replies
12
Views
3K
  • · Replies 5 ·
Replies
5
Views
5K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 19 ·
Replies
19
Views
6K