Unverified Commit ade60906 authored by Tim Giroux's avatar Tim Giroux Committed by GitHub
Browse files

hideal2pds #3978 fix (#3998)

* addresses #3978

* corrects for all but 16 bit compression

* corrects for all but 16 bit compression

organize template files and add 8bit version

use 8bit template when 8bit

Delete .nfs00000001d83de60d0000003e

remove accidental file

Updated equalizer output (#4000)

* Fixed equalizer output

* Added changelog

* Added issue number

Stats Docs (#3923)

* Updated stats documentation

* Updated stats docs based on feedback

isis2raw pure export update (#4002)

* Changed check and set range logic/removed duplicate code

* Added history comment and moved function outside of if statement

* Fixed pixel type prapogation and boolean logic

* Addressed PR feedback

* Updated the changelog

Add GUI helper to hist so user can see what the minimum and maximum DN values are of the specified band of the cube

Update CHANGELOG.md

update CHANGELOG and rebase to upstream dev

documentation

update CHANGELOG and rebase to upstream dev

documentation
parent 734aee02
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -55,6 +55,7 @@ ISIS3 Contributors
- Steven Lambright 
- Stuart Sides 
- Summer Stapleton 
- Timothy Giroux
- Tracie Sucharski 
- Travis Addair 
- Tyler Wilson 
+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@ update the Unreleased link so that it compares against the latest release tag.

 - Equalizer now reports the correct equation and values used to perform the adjustment. [#3987](https://github.com/USGS-Astrogeology/ISIS3/issues/3987)
 - Map2cam now works correctly when specifying bands for input cubes. [#3856](https://github.com/USGS-Astrogeology/ISIS3/issues/3856)
 - mro/hideal2pds app now writes the correct SAMPLE_BIT_MASK values to the output label. [#3978](https://github.com/USGS-Astrogeology/ISIS3/issues/3978)

 ### Added
 
+3 −3
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ INSTRUMENT_HOST_NAME = String
TARGET_NAME                              = String
MISSION_PHASE_NAME                       = String
ORBIT_NUMBER                             = Integer
SOURCE_PRODUCT_ID                        = String
#SOURCE_PRODUCT_ID                        = String
RATIONALE_DESC                           = String
SOFTWARE_NAME                            = String
SAMPLE_DETECTORS                         = Integer 
@@ -33,7 +33,7 @@ LINE_DETECTORS = Integer
INSTRUMENT_TYPE                          = Enum
EPHEMERIS_TIME                           = Real
FOCAL_PLANE_X_DEPENDENCY                 = Integer
EXPOSURE_DURATION                        = (Real, 4)
EXPOSURE_DURATION                        = (Real, 6)
IMAGE_JITTER_CORRECTED                   = Integer
SHAPE_MODEL                              = String
A_AXIS_RADIUS                            = (Real, 2)
@@ -68,7 +68,7 @@ BANDS = Integer
OFFSET                                   = Real
SCALING_FACTOR                           = Real
SAMPLE_BITS                              = Integer
SAMPLE_BIT_MASK                          = ("Binary",16)
SAMPLE_BIT_MASK                          = ("Binary",8)
SAMPLE_TYPE                              = Enum
FILTER_NAME                              = String
CENTER_FILTER_WAVELENGTH                 = Real
Loading