Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ ctest FunctionalTestJigsawApollo to validate this output. [#5710](https://github
- Fixed `BundleObservationSolveSettings` to properly read empty solve setting xmls [#5822](https://github.com/DOI-USGS/ISIS3/pull/5822)
- Fixed `footprintinit` to find mapping group (no caps). [#5920](https://github.com/DOI-USGS/ISIS3/pull/5820)
- Fixed unnecessary un/distortion checks for pixels near the origin. [#5861](https://github.com/DOI-USGS/ISIS3/issues/5861)
- Fixed the isisStartup scripts for users outside of USGS systems. [#5478](https://github.com/DOI-USGS/ISIS3/issues/5478)

### Removed
- QT 6 removed MySQL support so MySQL is no longer supported in `isisminer` [#5909](https://github.com/DOI-USGS/ISIS3/pull/5909)
Expand Down
2 changes: 1 addition & 1 deletion isis/scripts/isis3Startup.csh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if ($?ISISROOT == 0) then
endif

# Initialize the ISISDATA environment variable
if (-d $ISISROOT/../data) then
if (-d $ISISROOT/../isis_data) then
setenv ISISDATA $ISISROOT/../isis_data
else
setenv ISISDATA /usgs/cpkgs/isis3/isis_data
Expand Down
2 changes: 1 addition & 1 deletion isis/scripts/isis3Startup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def setisis():
os.environ['ISISROOT'] = ISISROOT

#Check for the ISISDATA directory. If it does not exist use a default
if os.path.exists("%s/../data" % (ISISROOT)):
if os.path.exists("%s/../isis_data" % (ISISROOT)):
os.environ['ISISDATA'] = "%s/../isis_data" % (ISISROOT)
else:
os.environ['ISISDATA'] = "/usgs/cpkgs/isis3/isis_data"
Expand Down
2 changes: 1 addition & 1 deletion isis/scripts/isis3Startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if [ ! "$ISISROOT" ]; then
export ISISROOT
fi

if [ -d $ISISROOT/../data ]; then
if [ -d $ISISROOT/../isis_data ]; then
ISISDATA=$ISISROOT/../isis_data
else
ISISDATA=/usgs/cpkgs/isis3/isis_data
Expand Down
2 changes: 1 addition & 1 deletion isis/scripts/isisStartup.csh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if ($?ISISROOT == 0) then
endif

if ($?ISISDATA == 0) then
if (-d $ISISROOT/../data) then
if (-d $ISISROOT/../isis_data) then
setenv ISISDATA $ISISROOT/../isis_data
else
setenv ISISDATA /usgs/cpkgs/isis3/isis_data
Expand Down
2 changes: 1 addition & 1 deletion isis/scripts/isisStartup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if [ ! "$ISISROOT" ]; then
fi

if [ ! "$ISISDATA" ]; then
if [ -d $ISISROOT/../data ]; then
if [ -d $ISISROOT/../isis_data ]; then
ISISDATA=$ISISROOT/../isis_data
else
ISISDATA=/usgs/cpkgs/isis3/isis_data
Expand Down