subroutine ch_cap ( c ) !*****************************************************************************80 ! !! ch_cap() capitalizes a single character. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 19 July 1998 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input/output, character C, the character to capitalize. ! implicit none character c integer itemp itemp = ichar ( c ) if ( 97 <= itemp .and. itemp <= 122 ) then c = char ( itemp - 32 ) end if return end subroutine get_unit ( iunit ) !*****************************************************************************80 ! !! GET_UNIT returns a free FORTRAN unit number. ! ! Discussion: ! ! A "free" FORTRAN unit number is a value between 1 and 99 which ! is not currently associated with an I/O device. A free FORTRAN unit ! number is needed in order to open a file with the OPEN command. ! ! If IUNIT = 0, then no free FORTRAN unit could be found, although ! all 99 units were checked (except for units 5, 6 and 9, which ! are commonly reserved for console I/O). ! ! Otherwise, IUNIT is a value between 1 and 99, representing a ! free FORTRAN unit. Note that GET_UNIT assumes that units 5 and 6 ! are special, and will never return those values. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 18 September 2005 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Output, integer IUNIT, the free unit number. ! implicit none integer i integer ios integer iunit logical lopen iunit = 0 do i = 1, 99 if ( i /= 5 .and. i /= 6 .and. i /= 9 ) then inquire ( unit = i, opened = lopen, iostat = ios ) if ( ios == 0 ) then if ( .not. lopen ) then iunit = i return end if end if end if end do return end subroutine getint ( done, ierror, inunit, ival, string ) !*****************************************************************************80 ! !! GETINT reads an integer from a file. ! ! Discussion: ! ! The file, or at least the part read by GETINT, is assumed to ! contain nothing but integers. These integers may be separated ! by spaces, or appear on separate lines. Comments, which begin ! with "#" and extend to the end of the line, may appear anywhere. ! ! Each time GETINT is called, it tries to read the next integer ! it can find. It remembers where it was in the current line ! of text. ! ! The user should open a text file on FORTRAN unit INUNIT, ! set STRING = ' ' and DONE = TRUE. The GETINT routine will take ! care of reading in a new STRING as necessary, and extracting ! as many integers as possible from the line of text before ! reading in the next line. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 07 October 2000 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input/output, logical DONE. ! ! On input, if this is the first call, or the user has changed ! STRING, then set DONE = TRUE. ! ! On output, if there is no more data to be read from STRING, ! then DONE is TRUE. ! ! Output, integer IERROR, error flag. ! 0, no error occurred. ! 1, an error occurred while trying to read the integer. ! ! Input, integer INUNIT, the FORTRAN unit from which to read. ! ! Output, integer IVAL, the integer that was read. ! ! Input/output, character ( len = * ) STRING, the text of the most recently ! read line of the file. ! implicit none logical done integer i integer ierror integer inunit integer ios integer ival integer last character ( len = * ) string character ( len = 80 ) word do call word_next_rd ( string, word, done ) if ( .not. done ) then exit end if read ( inunit, '(a)', iostat = ios ) string if ( ios /= 0 ) then ierror = 1 return end if i = index ( string, '#' ) if ( i /= 0 ) then string(i:) = ' ' end if end do call s_to_i4 ( word, ival, ierror, last ) if ( ierror /= 0 ) then write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'GETINT - Fatal error!' write ( *, '(a)' ) ' Error trying to convert string to integer.' stop end if return end subroutine pbma_check_data ( row_num, col_num, b ) !*****************************************************************************80 ! !! PBMA_CHECK_DATA checks ASCII PBM data. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 02 March 2003 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, integer ROW_NUM, COL_NUM, the number of rows and ! columns of data. ! ! Input, integer B(ROW_NUM,COL_NUM), contains the bit data. ! implicit none integer col_num integer row_num integer b(row_num,col_num) integer ierror ierror = 0 if ( minval ( b(1:row_num,1:col_num) ) < 0 ) then write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'PBMA_CHECK_DATA - Fatal error!' write ( *, '(a)' ) ' At least one bit value is below 0.' ierror = 1 stop end if if ( 1 < maxval ( b(1:row_num,1:col_num) ) ) then write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'PBMA_CHECK_DATA - Fatal error!' write ( *, '(a)' ) ' At least one bit value exceeds 1.' ierror = 1 stop end if return end subroutine pbma_example ( row_num, col_num, b ) !*****************************************************************************80 ! !! PBMA_EXAMPLE sets up sample ASCII PBM data. ! ! Discussion: ! ! The data is the image of an ellipse. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 02 March 2003 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, integer ROW_NUM, COL_NUM, the number of rows and ! columns of data. A reasonable value is 200 for both. ! ! Output, integer B(ROW_NUM,COL_NUM), the bit data. ! implicit none integer, parameter :: rk = kind ( 1.0D+00 ) integer row_num integer col_num integer b(row_num,col_num) integer i integer j real ( kind = rk ) r real ( kind = rk ) test real ( kind = rk ) x real ( kind = rk ) xc real ( kind = rk ) y real ( kind = rk ) yc xc = real ( col_num, kind = rk ) / 2.0D+00 yc = real ( row_num, kind = rk ) / 2.0D+00 r = real ( min ( row_num, col_num ), kind = rk ) / 3.0D+00 do i = 1, row_num y = real ( i, kind = rk ) do j = 1, col_num x = real ( j, kind = rk ) test = r - sqrt ( ( x - xc )**2 + 0.75D+00 * ( y - yc )**2 ) if ( abs ( test ) <= 3.0D+00 ) then b(i,j) = 1 else b(i,j) = 0 end if end do end do return end subroutine pbma_read_data ( file_in_unit, row_num, col_num, b ) !*****************************************************************************80 ! !! PBMA_READ_DATA reads the data in an ASCII PBM file. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 02 March 2003 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, integer FILE_IN_UNIT, the unit number of the file. ! ! Input, integer ROW_NUM, COL_NUM, the number of rows and ! columns of data. ! ! Output, integer B(ROW_NUM,COL_NUM), the bit data. ! implicit none integer col_num integer row_num integer b(row_num,col_num) character c integer file_in_unit integer i integer ierror integer ios integer j integer k integer k_max character ( len = 80 ) string ierror = 0 k = 0 k_max = 0 string = ' ' do i = 1, row_num do j = 1, col_num do if ( k_max <= k ) then read ( file_in_unit, '(a)', iostat = ios ) string if ( ios /= 0 ) then ierror = 1 write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'PBMA_READ_DATA - Fatal error!' write ( *, '(a)' ) ' Problem reading data.' stop end if k = 0 k_max = len_trim ( string ) if ( k_max <= 0 ) then cycle end if end if k = k + 1 c = string(k:k) if ( c == '0' ) then b(i,j) = 0 exit else if ( c == '1' ) then b(i,j) = 1 exit end if end do end do end do return end subroutine pbma_read_header ( file_in_unit, row_num, col_num ) !*****************************************************************************80 ! !! PBMA_READ_HEADER reads the header of an ASCII PBM file. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 02 March 2003 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, integer FILE_IN_UNIT, the unit number of the file. ! ! Output, integer ROW_NUM, COL_NUM, the number of rows and ! columns of data. ! implicit none logical done integer file_in_unit integer ierror integer ios character ( len = 2 ) magic integer col_num integer row_num logical s_eqi character ( len = 255 ) string ! ! Read the first line of data, which must begin with the magic number. ! read ( file_in_unit, '(a)', iostat = ios ) magic if ( ios /= 0 ) then write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'PBMA_READ_HEADER - Fatal error!' write ( *, '(a)' ) ' End or error while reading file.' ierror = 2 stop end if if ( .not. s_eqi ( magic, 'P1' ) ) then ierror = 3 write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'PBMA_READ_HEADER - Fatal error.' write ( *, '(a)' ) ' First two bytes are not magic number "P1".' write ( *, '(a)' ) ' First two bytes are: "' // magic // '".' stop end if ! ! Now search for COL_NUM and ROW_NUM. ! done = .true. string = ' ' call getint ( done, ierror, file_in_unit, col_num, string ) if ( ierror /= 0 ) then close ( unit = file_in_unit ) ierror = 4 write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'PBMA_READ_HEADER - Fatal error!' write ( *, '(a)' ) ' Problem reading COL_NUM.' stop end if call getint ( done, ierror, file_in_unit, row_num, string ) if ( ierror /= 0 ) then ierror = 4 close ( unit = file_in_unit ) write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'PBMA_READ_HEADER - Fatal error!' write ( *, '(a)' ) ' Problem reading ROW_NUM.' stop end if return end subroutine pbma_read_test ( file_in_name ) !*****************************************************************************80 ! !! PBMA_READ_TEST tests an ASCII PBM file. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 02 March 2003 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, character ( len = * ) FILE_IN_NAME, the name of the file. ! implicit none integer, allocatable, dimension ( :, : ) :: b character ( len = * ) file_in_name integer file_in_unit integer ierror integer ios integer col_num integer row_num call get_unit ( file_in_unit ) open ( unit = file_in_unit, file = file_in_name, status = 'old', & iostat = ios ) if ( ios /= 0 ) then ierror = 1 write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'PBMA_READ_TEST - Fatal error!' write ( *, '(a)' ) ' Could not open the file.' stop end if ! ! Read the header. ! call pbma_read_header ( file_in_unit, row_num, col_num ) ! ! Allocate the data. ! allocate ( b(row_num,col_num) ) ! ! Read the data. ! call pbma_read_data ( file_in_unit, row_num, col_num, b ) close ( unit = file_in_unit ) ! ! Check the data. ! call pbma_check_data ( row_num, col_num, b ) write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'PBMA_READ_TEST:' write ( *, '(a)' ) ' PBMA_CHECK_DATA has approved the data from the file.' deallocate ( b ) return end subroutine pbma_write ( file_out_name, row_num, col_num, b ) !*****************************************************************************80 ! !! PBMA_WRITE writes an ASCII PBM file. ! ! Example: ! ! P1 ! # feep.pbma created by PBMA_IO(PBMA_WRITE). ! 24 7 ! 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ! 0 1 1 1 1 0 0 1 1 1 1 0 0 1 1 1 1 0 0 1 1 1 1 0 ! 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 ! 0 1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 1 0 ! 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 ! 0 1 0 0 0 0 0 1 1 1 1 0 0 1 1 1 1 0 0 1 0 0 0 0 ! 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 04 June 2010 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, character ( len = * ) FILE_OUT_NAME, the name of the file. ! ! Input, integer ROW_NUM, COL_NUM, the number of rows ! and columns of data. ! ! Input, integer B(ROW_NUM,COL_NUM), the bit value of each ! pixel. These should be 0 or 1. ! implicit none integer col_num integer row_num integer b(row_num,col_num) character ( len = * ) file_out_name integer file_out_unit integer ierror integer ios ierror = 0 ! ! Open the file. ! call get_unit ( file_out_unit ) open ( unit = file_out_unit, file = file_out_name, status = 'replace', & form = 'formatted', access = 'sequential', iostat = ios ) if ( ios /= 0 ) then write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'PBMA_WRITE - Fatal error!' write ( *, '(a)' ) ' Could not open the file.' stop end if ! ! Write the header. ! call pbma_write_header ( file_out_name, file_out_unit, row_num, col_num ) ! ! Write the data. ! call pbma_write_data ( file_out_unit, row_num, col_num, b ) ! ! Close the file. ! close ( unit = file_out_unit ) return end subroutine pbma_write_data ( file_out_unit, row_num, col_num, b ) !*****************************************************************************80 ! !! PBMA_WRITE_DATA writes the data of an ASCII PBM file. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 02 March 2003 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, integer FILE_OUT_UNIT, the output file unit number. ! ! Input, integer ROW_NUM, COL_NUM, the number of rows and ! columns of data. ! ! Input, integer B(ROW_NUM,COL_NUM), the bit value of each ! pixel. These should be 0 or 1. ! implicit none integer col_num integer row_num integer b(row_num,col_num) integer file_out_unit integer i integer jhi integer jlo ! ! Write the header. ! do i = 1, row_num do jlo = 1, col_num, 60 jhi = min ( jlo + 59, col_num ) write ( file_out_unit, '(60i1)' ) b(i,jlo:jhi) end do end do return end subroutine pbma_write_header ( file_out_name, file_out_unit, row_num, col_num ) !*****************************************************************************80 ! !! PBMA_WRITE_HEADER writes the header of an ASCII PBM file. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 02 March 2003 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, character ( len = * ) FILE_OUT_NAME, the name of the output file. ! ! Input, integer FILE_OUT_UNIT, the output file unit number. ! ! Input, integer ROW_NUM, COL_NUM, the number of rows and ! columns of data. ! implicit none character ( len = * ) file_out_name integer file_out_unit character ( len = 2 ) :: magic = 'P1' integer col_num integer row_num ! ! Write the header. ! write ( file_out_unit, '(a2)' ) magic write ( file_out_unit, '(a)' ) '# ' // trim ( file_out_name ) & // ' created by PBMA_IO::PBMA_WRITE.F90.' write ( file_out_unit, '(i8,2x,i8)' ) col_num, row_num return end subroutine pbma_write_test ( file_out_name ) !*****************************************************************************80 ! !! PBMA_WRITE_TEST tests the ASCII PBM write routines. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 02 March 2003 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, character ( len = * ) FILE_OUT_NAME, the name of the file. ! implicit none integer, allocatable, dimension ( :, : ) :: b character ( len = * ) file_out_name integer col_num integer row_num row_num = 200 col_num = 200 ! ! Allocate memory. ! allocate ( b(row_num,col_num) ) ! ! Set the data. ! call pbma_example ( row_num, col_num, b ) ! ! Write the data to the file. ! call pbma_write ( file_out_name, row_num, col_num, b ) deallocate ( b ); return end function s_eqi ( strng1, strng2 ) !*****************************************************************************80 ! !! S_EQI is a case insensitive comparison of two strings for equality. ! ! Example: ! ! S_EQI ( 'Anjana', 'ANJANA' ) is .TRUE. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 14 April 1999 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, character ( len = * ) STRNG1, STRNG2, the strings to compare. ! ! Output, logical S_EQI, the result of the comparison. ! implicit none integer i integer len1 integer len2 integer lenc logical s_eqi character s1 character s2 character ( len = * ) strng1 character ( len = * ) strng2 len1 = len ( strng1 ) len2 = len ( strng2 ) lenc = min ( len1, len2 ) s_eqi = .false. do i = 1, lenc s1 = strng1(i:i) s2 = strng2(i:i) call ch_cap ( s1 ) call ch_cap ( s2 ) if ( s1 /= s2 ) then return end if end do do i = lenc + 1, len1 if ( strng1(i:i) /= ' ' ) then return end if end do do i = lenc + 1, len2 if ( strng2(i:i) /= ' ' ) then return end if end do s_eqi = .true. return end subroutine s_to_i4 ( s, ival, ierror, last ) !*****************************************************************************80 ! !! S_TO_I4 reads an I4 from a string. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 28 August 1999 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, character ( len = * ) S, a string to be examined. ! ! Output, integer IVAL, the integer value read from the string. ! If blank, then IVAL will be returned 0. ! ! Output, integer IERROR, an error flag. ! 0, no error. ! 1, an error occurred. ! ! Output, integer LAST, the last character that was ! part of the representation of IVAL. ! implicit none character c integer i integer ierror integer isgn integer istate integer ival integer last integer lens character ( len = * ) s ierror = 0 istate = 0 isgn = 1 ival = 0 lens = len ( s ) i = 0 do i = i + 1 c = s(i:i) if ( istate == 0 ) then if ( c == ' ' ) then else if ( c == '-' ) then istate = 1 isgn = -1 else if ( c == '+' ) then istate = 1 isgn = + 1 else if ( lle ( '0', c ) .and. lle ( c, '9' ) ) then istate = 2 ival = ichar ( c ) - ichar ( '0' ) else ierror = 1 exit end if else if ( istate == 1 ) then if ( c == ' ' ) then else if ( lle ( '0', c ) .and. lle ( c, '9' ) ) then istate = 2 ival = ichar ( c ) - ichar ( '0' ) else ierror = 1 exit end if else if ( istate == 2 ) then if ( lle ( '0', c ) .and. lle ( c, '9' ) ) then ival = 10 * ival + ichar ( c ) - ichar ( '0' ) else istate = 3 end if end if ! ! Continue or exit? ! if ( istate == 3 ) then ival = isgn * ival last = i - 1 exit else if ( lens <= i ) then if ( istate == 2 ) then ival = isgn * ival last = lens else ierror = 1 last = 0 end if exit end if end do return end subroutine timestamp ( ) !*****************************************************************************80 ! !! TIMESTAMP prints the current YMDHMS date as a time stamp. ! ! Example: ! ! 31 May 2001 9:45:54.872 AM ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 18 May 2013 ! ! Author: ! ! John Burkardt ! implicit none character ( len = 8 ) ampm integer d integer h integer m integer mm character ( len = 9 ), parameter, dimension(12) :: month = (/ & 'January ', 'February ', 'March ', 'April ', & 'May ', 'June ', 'July ', 'August ', & 'September', 'October ', 'November ', 'December ' /) integer n integer s integer values(8) integer y call date_and_time ( values = values ) y = values(1) m = values(2) d = values(3) h = values(5) n = values(6) s = values(7) mm = values(8) if ( h < 12 ) then ampm = 'AM' else if ( h == 12 ) then if ( n == 0 .and. s == 0 ) then ampm = 'Noon' else ampm = 'PM' end if else h = h - 12 if ( h < 12 ) then ampm = 'PM' else if ( h == 12 ) then if ( n == 0 .and. s == 0 ) then ampm = 'Midnight' else ampm = 'AM' end if end if end if write ( *, '(i2.2,1x,a,1x,i4,2x,i2,a1,i2.2,a1,i2.2,a1,i3.3,1x,a)' ) & d, trim ( month(m) ), y, h, ':', n, ':', s, '.', mm, trim ( ampm ) return end subroutine word_next_rd ( line, word, done ) !*****************************************************************************80 ! !! WORD_NEXT_RD "reads" words from a string, one at a time. ! ! Licensing: ! ! This code is distributed under the MIT license. ! ! Modified: ! ! 18 December 2008 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, character ( len = * ) LINE, a string, presumably containing ! words separated by spaces. ! ! Output, character ( len = * ) WORD. ! If DONE is FALSE, ! WORD contains the "next" word read from LINE. ! Else ! WORD is blank. ! ! Input/output, logical DONE. ! On input, on the first call, or with a fresh value of LINE, ! set DONE to TRUE. ! Else ! leave it at the output value of the previous call. ! On output, if a new nonblank word was extracted from LINE ! DONE is FALSE ! ELSE ! DONE is TRUE. ! If DONE is TRUE, then you need to provide a new LINE of data. ! ! Local Parameters: ! ! NEXT is the next location in LINE that should be searched. ! implicit none logical done integer ilo integer lenl character ( len = * ) line integer, save :: next = 1 character ( len = 1 ), parameter :: TAB = char(9) character ( len = * ) word lenl = len_trim ( line ) if ( done ) then next = 1 done = .false. end if ! ! Beginning at index NEXT, search LINE for the next nonblank. ! ilo = next do ! ! ...LINE(NEXT:LENL) is blank. Return with WORD=' ', and DONE=TRUE. ! if ( lenl < ilo ) then word = ' ' done = .true. next = lenl + 1 return end if ! ! ...If the current character is blank, skip to the next one. ! if ( line(ilo:ilo) /= ' ' .and. line(ilo:ilo) /= TAB ) then exit end if ilo = ilo + 1 end do ! ! To get here, ILO must be the index of the nonblank starting ! character of the next word. ! ! Now search for the LAST nonblank character. ! next = ilo + 1 do if ( lenl < next ) then word = line(ilo:next-1) return end if if ( line(next:next) == ' ' .or. line(next:next) == TAB ) then exit end if next = next + 1 end do word = line(ilo:next-1) return end