@@ -739,7 +739,7 @@ def generate_primary_header(cls, filename, product, *, version=0):
739739 ("DATAMIN" , product .dmin , "Minimum valid physical value" ),
740740 ("DATAMAX" , product .dmax , "Maximum valid physical value" ),
741741 ("BUNIT" , product .bunit , "Units of physical value, after application of BSCALE, BZERO" ),
742- ("XPOSURE" , product .exposure , "[s] shortest exposure time" ),
742+ ("XPOSURE" , product .min_exposure , "[s] shortest exposure time" ),
743743 ("XPOMAX" , product .max_exposure , "[s] maximum exposure time" ),
744744 )
745745
@@ -781,7 +781,7 @@ def generate_primary_header(self, filename, product, *, version=0):
781781 ("DATAMIN" , empty_if_nan (product .dmin ), "Minimum valid physical value" ),
782782 ("DATAMAX" , empty_if_nan (product .dmax ), "Maximum valid physical value" ),
783783 ("BUNIT" , product .bunit , "Units of physical value, after application of BSCALE, BZERO" ),
784- ("XPOSURE" , empty_if_nan (product .exposure ), "[s] shortest exposure time" ),
784+ ("XPOSURE" , empty_if_nan (product .min_exposure ), "[s] shortest exposure time" ),
785785 ("XPOMAX" , empty_if_nan (product .max_exposure ), "[s] maximum exposure time" ),
786786 )
787787
@@ -997,7 +997,7 @@ def generate_primary_header(self, filename, product, *, version=0):
997997 ("DATAMIN" , empty_if_nan (product .dmin ), "Minimum valid physical value" ),
998998 ("DATAMAX" , empty_if_nan (product .dmax ), "Maximum valid physical value" ),
999999 ("BUNIT" , product .bunit , "Units of physical value, after application of BSCALE, BZERO" ),
1000- ("XPOSURE" , empty_if_nan (product .exposure ), "[s] shortest exposure time" ),
1000+ ("XPOSURE" , empty_if_nan (product .min_exposure ), "[s] shortest exposure time" ),
10011001 ("XPOMAX" , empty_if_nan (product .max_exposure ), "[s] maximum exposure time" ),
10021002 )
10031003
0 commit comments