1
- import os .path
2
-
3
1
import numpy as np
4
2
import pytest
5
3
13
11
14
12
from sunraster import RasterSequence , SpectrogramCube , SpectrogramSequence
15
13
from sunraster .instr .spice import SPICEMeta , read_spice_l2_fits
16
- from sunraster .tests import test_data_dir
14
+ from sunraster .tests import TEST_DATA_PATH
17
15
18
16
READ_SPICE_L2_FITS_RETURN_TYPE = NDCollection
19
17
SPECTRAL_WINDOW = ("WINDOW0_74.73" , "Extension name" )
53
51
@pytest .fixture
54
52
def spice_fits_header ():
55
53
hdr = fits .Header ()
56
- hdr .append (tuple ([ "EXTNAME" ] + list (SPECTRAL_WINDOW )))
57
- hdr .append (tuple ([ "DETECTOR" ] + list (DETECTOR )))
58
- hdr .append (tuple ([ "INSTRUME" ] + list (INSTRUMENT )))
59
- hdr .append (tuple ([ "OBSRVTRY" ] + list (OBSERVATORY )))
60
- hdr .append (tuple ([ "LEVEL" ] + list (PROCESSING_LEVEL )))
61
- hdr .append (tuple ([ "RSUN_REF" ] + list (RSUN_METERS )))
62
- hdr .append (tuple ([ "RSUN_ARC" ] + list (RSUN_ANGULAR )))
63
- hdr .append (tuple ([ "OBS_ID" ] + list (OBSERVING_MODE_ID )))
64
- hdr .append (tuple ([ "OBS_VR" ] + list (OBSERVATORY_RADIAL_VELOCITY )))
65
- hdr .append (tuple ([ "DSUN_OBS" ] + list (DISTANCE_TO_SUN )))
66
- hdr .append (tuple ([ "DATE-OBS" ] + list (DATE_REFERENCE )))
67
- hdr .append (tuple ([ "DATE-BEG" ] + list (DATE_START )))
68
- hdr .append (tuple ([ "DATE-END" ] + list (DATE_END )))
69
- hdr .append (tuple ([ "HGLN_OBS" ] + list (HGLN_OBS )))
70
- hdr .append (tuple ([ "HGLT_OBS" ] + list (HGLT_OBS )))
71
- hdr .append (tuple ([ "SPIOBSID" ] + list (SPICE_OBSERVING_MODE_ID )))
72
- hdr .append (tuple ([ "DARKMAP" ] + list (DARKMAP )))
73
- hdr .append (tuple ([ "BLACKLEV" ] + list (BLACKLEV )))
74
- hdr .append (tuple ([ "WIN_TYPE" ] + list (WINDOW_TYPE )))
75
- hdr .append (tuple ([ "WINTABID" ] + list (WINDOW_TABLE_ID )))
76
- hdr .append (tuple ([ "SLIT_ID" ] + list (SLIT_ID )))
77
- hdr .append (tuple ([ "SLIT_WID" ] + list (SLIT_WIDTH )))
78
- hdr .append (tuple ([ "DUMBBELL" ] + list (DUMBBELL )))
79
- hdr .append (tuple ([ "SOLAR_B0" ] + list (SOLAR_B0 )))
80
- hdr .append (tuple ([ "SOLAR_P0" ] + list (SOLAR_P0 )))
81
- hdr .append (tuple ([ "SOLAR_EP" ] + list (SOLAR_EP )))
82
- hdr .append (tuple ([ "CAR_ROT" ] + list (CARRINGTON_ROTATION_NUMBER )))
83
- hdr .append (tuple ([ "DATE_EAR" ] + list (DATE_START_EARTH )))
84
- hdr .append (tuple ([ "DATE_SUN" ] + list (DATE_START_SUN )))
54
+ hdr .append (( "EXTNAME" , * list (SPECTRAL_WINDOW )))
55
+ hdr .append (( "DETECTOR" , * list (DETECTOR )))
56
+ hdr .append (( "INSTRUME" , * list (INSTRUMENT )))
57
+ hdr .append (( "OBSRVTRY" , * list (OBSERVATORY )))
58
+ hdr .append (( "LEVEL" , * list (PROCESSING_LEVEL )))
59
+ hdr .append (( "RSUN_REF" , * list (RSUN_METERS )))
60
+ hdr .append (( "RSUN_ARC" , * list (RSUN_ANGULAR )))
61
+ hdr .append (( "OBS_ID" , * list (OBSERVING_MODE_ID )))
62
+ hdr .append (( "OBS_VR" , * list (OBSERVATORY_RADIAL_VELOCITY )))
63
+ hdr .append (( "DSUN_OBS" , * list (DISTANCE_TO_SUN )))
64
+ hdr .append (( "DATE-OBS" , * list (DATE_REFERENCE )))
65
+ hdr .append (( "DATE-BEG" , * list (DATE_START )))
66
+ hdr .append (( "DATE-END" , * list (DATE_END )))
67
+ hdr .append (( "HGLN_OBS" , * list (HGLN_OBS )))
68
+ hdr .append (( "HGLT_OBS" , * list (HGLT_OBS )))
69
+ hdr .append (( "SPIOBSID" , * list (SPICE_OBSERVING_MODE_ID )))
70
+ hdr .append (( "DARKMAP" , * list (DARKMAP )))
71
+ hdr .append (( "BLACKLEV" , * list (BLACKLEV )))
72
+ hdr .append (( "WIN_TYPE" , * list (WINDOW_TYPE )))
73
+ hdr .append (( "WINTABID" , * list (WINDOW_TABLE_ID )))
74
+ hdr .append (( "SLIT_ID" , * list (SLIT_ID )))
75
+ hdr .append (( "SLIT_WID" , * list (SLIT_WIDTH )))
76
+ hdr .append (( "DUMBBELL" , * list (DUMBBELL )))
77
+ hdr .append (( "SOLAR_B0" , * list (SOLAR_B0 )))
78
+ hdr .append (( "SOLAR_P0" , * list (SOLAR_P0 )))
79
+ hdr .append (( "SOLAR_EP" , * list (SOLAR_EP )))
80
+ hdr .append (( "CAR_ROT" , * list (CARRINGTON_ROTATION_NUMBER )))
81
+ hdr .append (( "DATE_EAR" , * list (DATE_START_EARTH )))
82
+ hdr .append (( "DATE_SUN" , * list (DATE_START_SUN )))
85
83
return hdr
86
84
87
85
@@ -101,20 +99,21 @@ def spice_rasdb_filename(tmp_path):
101
99
102
100
A new FITS file is saved in a tmp file path.
103
101
"""
102
+ rng_gen = np .random .default_rng ()
104
103
filename = "solo_L2_spice-n-ras-db_20200602T081733_V01_12583760-000.fits"
105
- with fits .open (os . path . join ( test_data_dir , filename ) ) as hdulist :
104
+ with fits .open (TEST_DATA_PATH / filename ) as hdulist :
106
105
new_hdulist = fits .HDUList ()
107
- new_hdulist .append (fits .PrimaryHDU (np .random . rand ( 1 , 48 , 832 , 30 ), header = hdulist [0 ].header ))
108
- new_hdulist .append (fits .ImageHDU (np .random . rand ( 1 , 48 , 832 , 30 ), header = hdulist [1 ].header ))
109
- new_hdulist .append (fits .ImageHDU (np .random . rand ( 1 , 56 , 64 , 30 ), header = hdulist [2 ].header ))
110
- new_hdulist .append (fits .ImageHDU (np .random . rand ( 1 , 56 , 64 , 30 ), header = hdulist [3 ].header ))
106
+ new_hdulist .append (fits .PrimaryHDU (rng_gen .random (( 1 , 48 , 832 , 30 ) ), header = hdulist [0 ].header ))
107
+ new_hdulist .append (fits .ImageHDU (rng_gen .random (( 1 , 48 , 832 , 30 ) ), header = hdulist [1 ].header ))
108
+ new_hdulist .append (fits .ImageHDU (rng_gen .random (( 1 , 56 , 64 , 30 ) ), header = hdulist [2 ].header ))
109
+ new_hdulist .append (fits .ImageHDU (rng_gen .random (( 1 , 56 , 64 , 30 ) ), header = hdulist [3 ].header ))
111
110
new_hdulist .append (hdulist [- 1 ])
112
111
tmp_spice_path = tmp_path / "spice"
113
- if not os . path . exists (tmp_spice_path ):
112
+ if not tmp_spice_path . exists ():
114
113
tmp_spice_path .mkdir ()
115
- new_filename = os . path . join ( tmp_spice_path , filename )
114
+ new_filename = tmp_spice_path / filename
116
115
new_hdulist .writeto (new_filename , overwrite = True )
117
- return new_filename
116
+ return str ( new_filename )
118
117
119
118
120
119
@pytest .fixture
@@ -124,16 +123,17 @@ def spice_sns_filename(tmp_path):
124
123
125
124
A new FITS file is saved in a tmp file path.
126
125
"""
126
+ rng_gen = np .random .default_rng ()
127
127
filename = "solo_L2_spice-n-sit_20200620T235901_V01_16777431-000.fits"
128
- with fits .open (os . path . join ( test_data_dir , filename ) ) as hdulist :
128
+ with fits .open (TEST_DATA_PATH / filename ) as hdulist :
129
129
new_hdulist = fits .HDUList ()
130
- new_hdulist .append (fits .PrimaryHDU (np .random . rand ( 32 , 48 , 1024 , 1 ), header = hdulist [0 ].header ))
131
- new_hdulist .append (fits .ImageHDU (np .random . rand ( 32 , 48 , 1024 , 1 ), header = hdulist [1 ].header ))
130
+ new_hdulist .append (fits .PrimaryHDU (rng_gen .random (( 32 , 48 , 1024 , 1 ) ), header = hdulist [0 ].header ))
131
+ new_hdulist .append (fits .ImageHDU (rng_gen .random (( 32 , 48 , 1024 , 1 ) ), header = hdulist [1 ].header ))
132
132
new_hdulist .append (hdulist [- 1 ])
133
133
tmp_spice_path = tmp_path / "spice"
134
- if not os . path . exists (tmp_spice_path ):
134
+ if not tmp_spice_path . exists ():
135
135
tmp_spice_path .mkdir ()
136
- new_filename = os . path . join ( tmp_spice_path , filename )
136
+ new_filename = tmp_spice_path / filename
137
137
new_hdulist .writeto (new_filename , output_verify = "fix+ignore" , overwrite = True )
138
138
return new_filename
139
139
@@ -345,6 +345,6 @@ def test_read_spice_l2_fits_multiple_files_dumbbells(spice_rasdb_filename):
345
345
346
346
347
347
def test_read_spice_l2_fits_incompatible_files (spice_rasdb_filename , spice_sns_filename ):
348
- with pytest . raises ( ValueError ):
349
- filenames = [ spice_rasdb_filename , spice_sns_filename ]
348
+ filenames = [ spice_rasdb_filename , spice_sns_filename ]
349
+ with pytest . raises ( ValueError , match = "A" ):
350
350
read_spice_l2_fits (filenames )
0 commit comments