1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
|
!
! Phcorr - photometric corrections
! Copyright (C) 2012-4, 2016-20, 2023 Filip Hroch, Masaryk University, Brno, CZ
!
! This file is part of Munipack.
!
! Munipack is free software: you can redistribute it and/or modify
! it under the terms of the GNU General Public License as published by
! the Free Software Foundation, either version 3 of the License, or
! (at your option) any later version.
!
! Munipack is distributed in the hope that it will be useful,
! but WITHOUT ANY WARRANTY; without even the implied warranty of
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! GNU General Public License for more details.
!
! You should have received a copy of the GNU General Public License
! along with Munipack. If not, see <http://www.gnu.org/licenses/>.
!
program phcorr
use fitscorr
use oakleaf
use titsio
use iso_fortran_env
implicit none
character(len=FLEN_FILENAME) :: sciname, output
character(len=FLEN_FILENAME) :: flatname = ''
character(len=FLEN_FILENAME) :: biasname=''
character(len=FLEN_FILENAME) :: darkname=''
character(len=FLEN_FILENAME) :: maskname=''
character(len=4*FLEN_FILENAME) :: key, val, record
character(len=80) :: msg
integer :: eq, stat
logical :: verbose = .false. ! vebosity
logical :: normalise = .false. ! normalise flat prior to use
real :: gain_user = 0 ! gain
logical :: gain_set = .false.
real :: tol_exptime = 1e-6 ! tolerances
real :: tol_temperat = 1.0
real :: xdark = -1.0 ! dark time factor
real :: flat_mean = 1.0, flat_err = 0.0 ! flat parameters
integer :: bitpix = -32 ! bitpix
integer :: box = 5 ! box size for median mask
logical :: ex, exitus = .true.
logical :: overwrite = .false. ! do not overwrite files
logical :: gain_warning = .false. ! reports unset gain on finish
character(len=FLEN_KEYWORD) :: tmask = 'MEAN'
character(len=FLEN_KEYWORD), dimension(6) :: keys = [ &
FITS_KEY_DATEOBS, &
FITS_KEY_EXPTIME, &
FITS_KEY_FILTER, &
FITS_KEY_SATURATE, &
FITS_KEY_TEMPERATURE, &
FITS_KEY_GAIN ]
! FITS wrappers
type(CorrFits), allocatable :: flatfits, darkfits, biasfits, maskfits
do
read(*,'(a)',iostat=stat,iomsg=msg) record
if( stat == IOSTAT_END ) exit
if( stat > 0 ) then
write(error_unit,*) trim(msg)
error stop 'Error: an general input error.'
end if
eq = index(record,'=')
if( eq == 0 ) error stop 'Error: Malformed input record.'
key = record(:eq-1)
val = record(eq+1:)
if( key == 'VERBOSE' ) then
read(val,*) verbose
endif
if( key == 'OVERWRITE' ) then
read(val,*) overwrite
endif
if( key == 'BITPIX' ) then
read(val,*) bitpix
endif
if( key == 'FITS_KEY_DATEOBS' ) then
read(val,*) keys(1)
endif
if( key == 'FITS_KEY_EXPTIME' ) then
read(val,*) keys(2)
endif
if( key == 'FITS_KEY_FILTER' ) then
read(val,*) keys(3)
endif
if( key == 'FITS_KEY_SATURATE' ) then
read(val,*) keys(4)
endif
if( key == 'FITS_KEY_TEMPERATURE' ) then
read(val,*) keys(5)
endif
if( key == 'FITS_KEY_GAIN' ) then
read(val,*) keys(6)
endif
if( key == 'GAIN' ) then
read(val,*) gain_user
if( .not. (gain_user > 0) ) &
error stop 'Error: Assertion: gain > 0 unsatisfied.'
gain_set = .true.
endif
if( key == 'MUNIPACK_TEMPERATURE_TOLERANCE' ) then
read(val,*) tol_temperat
endif
if( key == 'MUNIPACK_EXPTIME_TOLERANCE' ) then
read(val,*) tol_exptime
endif
if( key == 'NORMALISE' ) then
read(val,*) normalise
endif
if( key == 'FLAT' ) then
read(val,*) flatname
if( verbose ) write(error_unit,'(a)',advance="no") &
"Flat-field frame: "//trim(flatname)//", "
allocate(flatfits)
call flatfits%Load(flatname,keys)
if( .not. flatfits%status ) &
error stop 'Error: Failed to load flat-field frame.'
if( verbose ) &
write(error_unit,'(2a)') ' filter = ',trim(flatfits%filter)
if( flatfits%filter == '' ) &
write(error_unit,*) &
"Warning: a photometric filter of flat-field unknown."
if( .not. all(flatfits%image > 0) ) &
error stop "Error: any value in the flat-field is non-positive."
if( normalise .or. flatfits%bitpix > 0 ) then
! average over the flat
call rmean(pack(flatfits%image, flatfits%image > 0),flat_mean,flat_err)
if( verbose ) &
write(error_unit,*) 'Flat-frame statistics: mean=', &
flat_mean,'+-',flat_err
if( flat_mean < epsilon(flat_mean) ) &
error stop 'Error: Suspicious value(s) of mean of flat-field.'
end if
end if
if( key == 'BIAS' ) then
read(val,*) biasname
if( verbose ) write(error_unit,'(a)',advance="no") &
"Bias frame: "//trim(biasname)//", "
allocate(biasfits)
call biasfits%Load(biasname,keys)
if( .not. biasfits%status ) &
error stop 'Error: Failed to load bias frame.'
if( verbose ) write(error_unit,'(a,1pg0.3,a,0pf0.1)') &
' exp.time[s] = ',biasfits%exptime,', T[degC] = ',biasfits%temper
end if
if( key == 'DARK' ) then
read(val,*) darkname
if( verbose ) write(error_unit,'(a)',advance="no") &
"Dark frame: "//trim(darkname)//", "
allocate(darkfits)
call darkfits%Load(darkname,keys)
if( .not. darkfits%status ) error stop 'Error: Failed to load dark frame.'
if( verbose ) write(error_unit,'(a,1pg0.3,a,0pf0.1)') &
' exp.time[s] = ',darkfits%exptime,', T[degC] = ',darkfits%temper
if( .not. darkfits%exptime_set .and. verbose ) &
write(error_unit,*) "Warning: Exposure time for dark is undefined."
if( darkfits%temper < -273 .and. verbose ) &
write(error_unit,*) "Warning: Temperature of dark is undefined."
end if
if( key == 'XDARK' ) then
read(val,*) xdark
end if
if( key == 'MASK' ) then
read(val,*) maskname
if( verbose ) write(error_unit,*) "Mask frame: ",trim(maskname)
allocate(maskfits)
call maskfits%Load(maskname)
if( .not. maskfits%status ) &
error stop 'Error: Failed to load the mask frame.'
end if
if( key == 'XMASK' ) then
read(val,*) tmask
end if
if( key == 'BOX' ) then
read(val,*) box
end if
if( key == 'FILE' ) then
read(val,*) sciname,output
ex = corrector(sciname,output)
exitus = exitus .and. ex
end if
end do
if( gain_warning ) write(error_unit,*) &
"Warning: Gain is unset for one or more frames (use -gain)."
if( exitus ) then
stop 0
else
error stop 'Error: an error occurred during phcorr session.'
end if
contains
logical function corrector(sciname,output)
character(len=*), parameter :: phid = 'PHCORR'
character(len=*), intent(in) :: sciname, output
character(len=FLEN_CARD) :: buf
character(len=4*FLEN_FILENAME) :: flattext, darktext, biastext
real, dimension(:,:), allocatable :: FLAT, BIAS, DARK, MASK, OUT, &
DFLAT, DBIAS, DDARK, DOUT
type(CorrFits) :: scifits
type(fitsfiles) :: fits, cfits
character(len=80) :: msg
integer :: stat,status,hdutype,hdunum,chdu
real :: t, xerr, xmask, saturate, gain, gain2, maxout
integer :: n, m
corrector = .false.
call scifits%Load(sciname,keys)
if( .not. scifits%status ) then
write(error_unit,*) &
"Warning: Failed to read `",trim(sciname),"'. Skippy."
return
end if
if( gain_set ) then
gain = gain_user
else
if( scifits%gain_set ) then
gain = scifits%gain
else
gain_warning = .true.
gain = 1
end if
end if
gain2 = gain**2
if( verbose ) &
write(error_unit,'(1x,f0.2,a)',advance="no") gain,' * ('//trim(sciname)
if( .not. (gain > 0) ) then
write(error_unit,*) "Warning: assertion gain > 0 unsatisfied. Skip."
return
end if
n = scifits%naxes(1)
m = scifits%naxes(2)
allocate(OUT(n,m),DOUT(n,m),FLAT(n,m),DFLAT(n,m),BIAS(n,m),DBIAS(n,m), &
DARK(n,m),DDARK(n,m),MASK(n,m),stat=stat,errmsg=msg)
if( stat /= 0 ) then
write(error_unit,*) 'allocate() in phcorr: ',trim(msg)
error stop 'Error: an insufficient memory.'
end if
t = 0.0
FLAT = 1.0
DFLAT = 0.0
BIAS = 0.0
DBIAS = 0.0
DARK = 0.0
DDARK = 0.0
if( allocated(flatfits) ) then
if( .not. all(flatfits%naxes == scifits%naxes) )then
write(error_unit,*) &
"Warning: Flat-field size does not match corrected frame `",&
trim(sciname),"', Skip."
return
end if
if( verbose .and. flatfits%filter /= '' .and. scifits%filter /= '' )then
if( flatfits%filter /= scifits%filter ) &
write(error_unit,*) "Warning: filters does not match."
end if
FLAT = flatfits%image / flat_mean
DFLAT = flatfits%imgerr / flat_mean
endif
if( allocated(biasfits) ) then
if( .not. all(biasfits%naxes == scifits%naxes) )then
write(error_unit,*) &
"Warning: Bias size does not match corrected frame `",&
trim(sciname),"', Skip."
return
end if
BIAS = biasfits%image
DBIAS = biasfits%imgerr
endif
if( allocated(maskfits) ) then
if( .not. all(maskfits%naxes == scifits%naxes) )then
write(error_unit,*) &
"Warning: Mask size does not match corrected frame `",&
trim(sciname),"', Skip."
return
end if
endif
if( allocated(darkfits) ) then
if( .not. all(darkfits%naxes == scifits%naxes) )then
write(error_unit,*) &
"Warning: Dark sizes does not match corrected frame `",&
trim(sciname),"', Skip."
return
end if
if( verbose .and. darkfits%temper > -273.0 .and. &
scifits%temper > -273.0 )then
if( abs(darkfits%temper - scifits%temper) > tol_temperat ) &
write(error_unit,*) &
"Warning: Temperature difference limit reached."
end if
if( xdark > 0.0 ) then
t = xdark
else if( darkfits%exptime_set .and. scifits%exptime_set .and. &
darkfits%exptime > 0 .and. scifits%exptime > 0 ) then
t = scifits%exptime / darkfits%exptime
else
t = 1
end if
DARK = darkfits%image
DDARK = darkfits%imgerr
endif
if( verbose ) then
flattext = ''
biastext = ''
darktext = ''
if( flatname /= '' ) write(flattext,'(3a,1pg0.6,a)') &
'/ (',trim(flatname),'/',flat_mean,')'
if( biasname /= '' ) &
biastext = " - "//trim(biasname)
if( darkname /= '' ) &
write(darktext,'(a,f0.3,2a)') ' - ',t,'*',trim(darkname)
write(error_unit,'(a)',advance="no") &
trim(darktext)//trim(biastext)//') '//trim(flattext)//' ='
end if
! the corrections, we are sure that FLAT > 0
OUT = gain*(scifits%image - (t*DARK + BIAS)) / FLAT
where( OUT > 0 )
DOUT = sqrt(OUT + gain2*((t*DDARK)**2 + DBIAS**2))
DOUT = abs(OUT)*sqrt((DOUT/OUT)**2 + (DFLAT/FLAT)**2)
elsewhere
! dark pixels
DOUT = 0
end where
! YES, this small piece of code is the full correction!!!
! All other staff is just a practise in reading and writing of FITS files.
! masking
if( allocated(maskfits) ) then
MASK = maskfits%image
if( tmask == "MEAN" .or. tmask == "MEDIAN" ) then
! median of the image
call rmean(pack(OUT,OUT>0),xmask,xerr)
if( verbose ) write(error_unit,*) 'Mask frame statistics: mean=',&
xmask,'+-',xerr
else ! if( tmask == "ZERO" ) then
xmask = 0
xerr = 0
end if
where( MASK < epsilon(MASK) )
OUT = xmask
DOUT = xerr
end where
if( tmask == 'MEDIAN' ) then
block
integer :: i,j,h,i1,i2,j1,j2
h = min(box / 2, 1)
do i = 1, size(MASK,1)
do j = 1, size(MASK,2)
if( MASK(i,j) < epsilon(MASK) ) then
i1 = max(1,i-h)
i2 = min(i+h,size(MASK,1))
j1 = max(1,j-h)
j2 = min(j+h,size(MASK,2))
if( count(MASK(i1:i2,j1:j2) > 0) > 0 ) then
call rmean(pack(OUT(i1:i2,j1:j2), &
MASK(i1:i2,j1:j2) > 0),OUT(i,j),DOUT(i,j))
end if
end if
end do
end do
end block
end if
end if
! write out corrected image
status = 0
call fits_open_image(fits,sciname,FITS_READONLY,status)
if( status /= 0 ) then
write(error_unit,*) 'Error: failed to read the file `',trim(sciname),"'."
corrector = .false.
return
end if
call fits_create_scratch(cfits,status)
call fits_get_num_hdus(fits,hdunum,status)
if( status /= 0 ) goto 666
block
character(len=FLEN_VALUE) :: extname
logical :: found
found = .false.
do chdu = 1, hdunum
call fits_movabs_hdu(fits,chdu,hdutype,status)
call fits_write_errmark
call fits_read_key(fits,'EXTNAME',extname,status)
if( status == FITS_KEYWORD_NOT_FOUND ) then
call fits_clear_errmark
status = 0
extname = ''
end if
! we are looking for the very first IMAGE HDU to apply the corrections
if( .not. found .and. hdutype == FITS_IMAGE_HDU ) then
found = .true.
call fits_copy_header(fits,cfits,status)
call fits_update_key(cfits,'BITPIX',bitpix,'',status)
if( bitpix > 0 ) then
maxout = 2.0**bitpix - 1
OUT = max(0.0,min(OUT,maxout))
DOUT = max(0.0,min(DOUT,maxout))
else
call fits_write_errmark
call fits_delete_key(cfits,'BSCALE',status)
call fits_delete_key(cfits,'BZERO',status)
if( status == FITS_KEYWORD_NOT_FOUND ) then
call fits_clear_errmark
status = 0
end if
end if
if( scifits%saturate_set ) then
saturate = scifits%get_saturate(gain)
call fits_update_key(cfits,keys(4),saturate,-5, &
'[counts] saturation level',status)
end if
! set units of images
if( gain_set .or. scifits%gain_set ) then
call fits_update_key(cfits,FITS_KEY_BUNIT,'COUNTS', &
'captured electrons',status)
call fits_update_key(cfits,keys(6),gain,5, &
'[e-/ADU] amplifier gain used for conversion',status)
write(buf,'(g0.3)') gain
call fits_write_history(cfits,phid//" gain: "//trim(buf),status)
else
call fits_update_key(cfits,FITS_KEY_BUNIT,'ADU', &
'values directly provided by camera',status)
end if
if( flatname /= '' ) then
write(buf,'(1pg0.6)') flat_mean
call fits_write_history(cfits,phid//" flat-field: '" // &
trim(flatname)//"' / "//trim(buf),status)
end if
if( darkname /= '' ) then
write(buf,'(f0.5)') t
call fits_write_history(cfits,phid//" dark: '"//trim(darkname) &
//"' * "//trim(buf),status)
end if
if( biasname /= '' ) then
call fits_write_history(cfits,phid//" bias: '"//trim(biasname)//"'",&
status)
end if
if( maskname /= '' ) then
call fits_write_history(cfits,phid//" mask: '"//trim(maskname)//"'",&
status)
end if
call fits_update_key(cfits,FITS_KEY_CREATOR,FITS_VALUE_CREATOR, &
FITS_COM_CREATOR,status)
call fits_write_comment(cfits,MUNIPACK_VERSION,status)
! corrected data
call fits_write_image(cfits,0,OUT,status)
else if( extname == EXT_STDERR ) then
! skip all previous std. error images
continue
else
! other HDUs are just copied
call fits_copy_hdu(fits,cfits,0,status)
end if
if( status /= 0 ) goto 666
end do
end block
! stderr
call fits_insert_img(cfits,bitpix,scifits%naxis,scifits%naxes,status)
call fits_update_key(cfits,'EXTNAME',EXT_STDERR,'',status)
call fits_write_comment(cfits,'The estimation of standard error.',status)
call fits_write_image(cfits,0,DOUT,status)
if( verbose ) write(error_unit,*) trim(output)
666 continue
if( status == 0 ) then
if( fits_file_exist(output) .and. overwrite ) &
call fits_file_delete(output)
call fits_file_duplicate(cfits,output,status)
end if
call fits_close_file(fits,status)
call fits_delete_file(cfits,status)
call fits_report_error(error_unit,status)
corrector = status == 0
end function corrector
end program phcorr
|