fortran에서 head line을 제거하고 그 후부터 읽고싶습니다

andy0128의 이미지

안녕하세요 프로그래밍을 막 시작한 학생입니다...
궁금한사항은 다음과 같습니다

Unknown_station, "C:\2012196\1037.12dat"^M
34.19528 131.73533 322.82274^M
Jdatet Time PRN Az Ele Lat Lon kk vv S4
2456122 6.758332 1 194.14 13.96 25.33 129.28 82.76 23.38 -99.000
2456122 6.766666 1 194.13 14.17 25.41 129.30 82.23 23.34 -99.000
2456122 6.774999 1 194.13 14.38 25.50 129.33 81.74 23.31 -99.000
2456122 6.783332 1 194.13 14.59 25.58 129.35 81.23 23.27 -99.000

이런식의 데이터가 있습니다 그래서 위의 4줄을 지우고 그 다음부터 데이터를 읽은 후

Time, Az, Ele, Lat, Lon ,, 이런식으로 배열을 만드려고합니다

그래서 인터넷에서 보이는데로 아래와 같은 방법을 사용하였더니

headline은 무시를하고 데이터를 읽기는 하는데

제가 원하는 x2에는 Time에 대한 값들 x4에는 Az에 대한 값들 이런식으로 나오지 않더라고요 ..

      program skip
      implicit none
      REAL:: lskip,lread
      REAL x1,x2,x3,x4,x5,x6,x7,x8,x9,x10
      character(len=100):: line
      open(unit=20, file = "1037196-2012-07-14_1.Cmn")
 
! skip first 3 lines
      do lskip = 1,3
       read(20,*) LIne
      End do
! First 5 lines skiped
! Now read actual lines
 
       do lread = 1,7
        read(20,*,end=10) x1,x2,x3,x4,x5,x6,x7,x8,x9,x10
        write(*,*) x1,x2,x3,x4,x5,x6,x7,x8,x9,x10
       enddo
   10 continue
 
      end program

IDl 같은경우 readcol을 한후 skipline=3이런식으로 제거한 후 format을 지정만 해주면 되던데
포트란은 잘모르겠네요.. 도와주시면 감사하겠습니다

아참 그리고 데이터에서 제거한 위 세줄중 두번째 줄에 있는
34.19528 131.73533 322.82274 이 값들을 따로 Rx(3)의 배열에다 지정해주고싶은데
이것은 어떻게 해야할까요...?

andy0128의 이미지

program skip
REAL:: lskip,lread
REAL DATA(5,10)
character(len=100):: line
OPEN(unit=20, file = "sample_data.Cmn")

!skip first 3 lines
do lskip = 1,3
read(20,*) Line
End do

print *, line
! First 5 lines skiped
! Now read actual lines

do lread = 1,5
read(20,*) (Data(i,j), j=1,10)
! write(*,*) (Data(i,j), j=1,10)
enddo

이렇게하니 데이터가 나오게 되었습니다

하지만 2번째줄에 있는 저 세가지 값을 어떻게 뽑아내야할지 ..

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.