diff --git a/README.md b/README.md
index c971634d39..9bcca604aa 100644
--- a/README.md
+++ b/README.md
@@ -1,564 +1,125 @@
-
+
# ISIS
[![Anaconda-Server Badge](https://anaconda.org/usgs-astrogeology/isis3/badges/version.svg)](https://anaconda.org/usgs-astrogeology/isis3)
[![Anaconda-Server Badge](https://anaconda.org/usgs-astrogeology/isis/badges/version.svg)](https://anaconda.org/usgs-astrogeology/isis)
-[![Badge for DOI 10.5066/P13YBMZA](https://img.shields.io/badge/DOI-10.5066%2FP13YBMZA-blue)](https://doi.org/10.5066/P13YBMZA)
+[![Badge for DOI 10.5066/P13TADS5](https://img.shields.io/badge/DOI-10.5066%2FP13TADS5-blue)](https://doi.org/10.5066/P13TADS5)
-## Table of Contents
+## Quick Reference
-* [Requests for Comment](README.md#Requests-for-Comment)
-* [FAQ](README.md#FAQ)
-* [ISIS Tutorials](README.md#ISIS-Tutorials)
-* [Citing ISIS](README.md#Citing-ISIS)
-* [Installation](README.md#Installation)
-* [Start Contributing](https://github.com/USGS-Astrogeology/ISIS3/wiki/How-to-Start-Contributing)
-* [ISIS Data Area](README.md#The-ISIS-Data-Area)
-* [ISIS Test Data](README.md#ISIS-Test-Data)
-* [Installing Older Versions of ISIS](README.md#Installing-older-versions-of-ISIS)
-* [Semantic Versioning and It's Role in Describing the Software](README.md#Semantic-Versioning-and-It's-Role-in-Describing-the-Software)
+To start using ISIS, see:
+- [Installing ISIS](https://astrogeology.usgs.gov/docs/how-to-guides/environment-setup-and-maintenance/installing-isis-via-anaconda/)
+ - Distubuted with conda, compatible with Unix and Mac.
+- [Intro to ISIS](https://astrogeology.usgs.gov/docs/getting-started/using-isis-first-steps/introduction-to-isis/)
+ - A good primer, at the end there's an example you can try!
+- [Setting Up the ISIS Data Area](https://astrogeology.usgs.gov/docs/how-to-guides/environment-setup-and-maintenance/isis-data-area/)
+ - You'll need this to process images on your own.
-## Requests for Comment
-The ISIS project uses a Request for Comment (RFC) model where major changes to the code base, data area, or binary delivery process are proposed, iterated on, and potentially adopted. Right now, RFCs are being housed in this repository's [wiki](https://github.com/USGS-Astrogeology/ISIS3/wiki).
-
-Current open RFCs:
- * No Requests for Comment are currently open
-
- We encourage all contributors and users to review open RFCs and comment, as these proposed changes will impact use of the software.
-
-## FAQ
-We maintain a list of frequently encountered questions and issues. Before opening a new issue, please take a look at the [FAQ](https://github.com/USGS-Astrogeology/ISIS3/wiki/FAQ).
-
-## ISIS Tutorials
-Please refer to the GitHub wiki page [ISIS Online Workshops](https://github.com/USGS-Astrogeology/ISIS3/wiki/ISIS_Online_Workshops) for current ISIS tutorials.
-
-## Citing ISIS
-
-The badge at the top of this README lists the DOI of the most recent ISIS version. As of 05/09/2024, the latest release of ISIS is version 8.0.3, and its DOI is [`10.5066/P13YBMZA`](https://doi.org/10.5066/P13YBMZA).
-
-The [Releases Page on GitHub](https://github.com/DOI-USGS/ISIS3/releases) lists the DOI for each version of ISIS. Older versions may be listed on [Zenodo](https://doi.org/10.5281/zenodo.2563341). It is good practice to cite the version of the software being used by the citing work, so others can reproduce your exact results.
-
-## Installation
-
-This installation guide is for ISIS users interested in installing ISIS (3.6.0)+ through conda.
-
-### ISIS Installation With Conda
-
-1. Download either the Anaconda or Miniconda installation script for your OS platform. Anaconda is a much larger distribtion of packages supporting scientific python, while Miniconda is a minimal installation and not as large: [Anaconda installer](https://www.anaconda.com/download), [Miniconda installer](https://conda.io/miniconda.html)
-1. If you are running on some variant of Linux, open a terminal window in the directory where you downloaded the script, and run the following commands. In this example, we chose to do a full install of Anaconda, and our OS is Linux-based. Your file name may be different depending on your environment.
-
- ```bash
- chmod +x Anaconda3-5.3.0-Linux-x86_64.sh
- ./Anaconda3-5.3.0-Linux-x86_64.sh
- ```
- This will start the Anaconda installer which will guide you through the installation process.
-
-1. If you are running Mac OS X, a pkg file (which looks similar to Anaconda3-5.3.0-MacOSX-x86\_64.pkg) will be downloaded. Double-click on the file to start the installation process.
-1. After the installation has finished, open up a bash prompt in your terminal window.
-1. If you have an ARM64 Mac (M1/M2) running Catalina (or later), additional prerequisites must be installed for ISIS to run in emulation:
- - Install [XQuartz](https://www.xquartz.org/). (Tested with XQuartz 2.8.5 on MacOS Catalina)
- - Install Rosetta2. From the terminal run: `/usr/sbin/softwareupdate --install-rosetta --agree-to-license`
- - Include the `# MacOS ARM64 Only` lines below
-1. Next setup your Anaconda environment for ISIS. In the bash prompt, run the following commands:
- > [!WARNING]
- > ISIS 8.1.0 is incompatible with Python 3.10, 3.11, and 3.12
- > The `conda create` command below creates a conda environment with Python 3.9
-
- ```bash
-
- #MacOS ARM64 Only - Setup the new environment as an x86_64 environment
- export CONDA_SUBDIR=osx-64
-
- #Create a new conda environment to install ISIS in
- conda create -n isis python=3.9
-
- #Activate the environment
- conda activate isis
-
- #MacOS ARM64 Only - Force installation of x86_64 packages instead of ARM64
- conda config --env --set subdir osx-64
-
- #Add the following channels to the environment
- conda config --env --add channels conda-forge
- conda config --env --add channels usgs-astrogeology
-
- #Verify you have the correct channels:
- conda config --show channels
-
- #You should see:
-
- channels:
- - usgs-astrogeology
- - conda-forge
- - defaults
-
- #The order is important. If conda-forge is before usgs-astrogeology, you will need to run:
-
- conda config --env --add channels usgs-astrogeology
-
- #Then set channel_priority to flexible in case there is a global channel_priority=strict setting
- conda config --env --set channel_priority flexible
- ```
-
-
-1. The environment is now ready to download ISIS and its dependencies:
-
- ```bash
- conda install -c usgs-astrogeology isis
- ```
- > [!NOTE]
- > The install may take 1 to 2 hours.
-
- If you would like to download an LTS version, follow the following format below:
- ```bash
- conda install -c "usgs-astrogeology/label/LTS" isis=8.0.1
- ```
-
-
-1. Finally, setup the environment variables:
-
- ISIS requires several environment variables to be set in order to run correctly.
- The variables include: ISISROOT and ISISDATA.
-
- More information about the ISISDATA environment variable and the ISIS Data Area can be found [here](#The-ISIS-Data-Area).
-
- The following steps are only valid for versions of ISIS after 4.2.0.
- For older versions of ISIS follow the instructions in [this readme file.](https://github.com/USGS-Astrogeology/ISIS3/blob/adf52de0a04b087411d53f3fe1c9218b06dff92e/README.md)
-
- There are two methods to configure the environment variables for ISIS:
-
- 1. Using `conda env config vars` *preferred*
-
- Conda has a built in method for configuring environment variables that are specific to a conda environment since version 4.8.
- This version number applies only to the conda package, not to the version of miniconda or anaconda that was installed.
-
- To determine if your version of conda is recent enough run:
-
- conda --version
-
- If the version number is less than 4.8, update conda to a newer version by running:
-
- conda update -n base conda
-
- The version number should now be greater than 4.8.
-
- To use the built in environment variable configuration feature, first activate the environment by first running:
-
- conda activate isis
-
- After activation, the environment variables can be set using the syntax: `conda config vars set KEY=VALUE`.
- To set all the environment variables ISIS requires, run the following command, updating the path to `ISISDATA` as needed:
-
- conda env config vars set ISISROOT=$CONDA_PREFIX ISISDATA=[path to data directory]
-
- To make these changes take effect, re-activate the isis environment by running:
-
- conda activate isis
-
- The environment variables are now set and ISIS is ready for use every time the isis environment is activated.
-
- **Note** This method will not enable tab completion for arguments in C-Shell.
-
-
- 1. Using the provided isisVarInit.py script:
-
- To use the default values for: `$ISISROOT` and `$ISISDATA`, run the ISIS variable initialization script with default arguments:
-
- python $CONDA_PREFIX/scripts/isisVarInit.py
-
- Executing this script with no arguments will result in $ISISROOT=$CONDA\_PREFIX and $ISISDATA=$CONDA\_PREFIX/data. The user can specify different directories for `$ISISDATA` using the optional value:
-
- python $CONDA_PREFIX/scripts/isisVarInit.py --data-dir=[path to data directory]
-
- Now every time the isis environment is activated, $ISISROOT and $ISISDATA will be set to the values passed to isisVarInit.py.
- This does not happen retroactively, so re-activate the isis environment with one of the following commands:
-
- for Anaconda 3.4 and up - conda activate isis
- prior to Anaconda 3.4 - source activate isis
-
-
-### Installation with Docker
-The ISIS production Dockerfile automates the conda installation process above.
-You can either build the Dockerfile yourself or use the
-[usgsastro/isis](https://hub.docker.com/repository/docker/usgsastro/isis)
-image from DockerHub.
-
-#### To build the Dockerfile
-1. Download [the production Docker file](./docker/production.dockerfile)
-2. Build the Dockerfile
- ```
- docker build -t isis -f production.dockerfile .
- ```
-3. Run the Dockerfile
- ```
- docker run -it isis bash
- ```
-
-#### Run run the prebuilt image
-```
-docker run -it usgsastro/isis bash
-```
-
-#### Usage with the ISIS data area
-Usually you'll want to mount an external directory containing the ISIS data.
-The data is not included in the Docker image.
-
-```
-docker run -v /my/data/dir:/opt/conda/data -v /my/testdata/dir:/opt/conda/testData -it usgsastro/isis bash
-```
-
-Then [download the data](#the-isis-data-area) into /my/data/dir to make it accessible inside your
-container.
-
-### Practical Usage with other conda packages
+For more info, see:
-If you don't use conda for anything else on your computer, you can
-skip this section.
+- [Tutorials and Guides](https://astrogeology.usgs.gov/docs/)
+- [FAQ](https://astrogeology.usgs.gov/docs/getting-started/using-isis-first-steps/isis-faq/)
+- [ISIS Application Manuals](https://isis.astrogeology.usgs.gov)
-If you use conda to install other packages, you may run into
-difficulties with adding the isis conda package to those environments
-or adding other conda packages to the isis environment you just
-created above. This is because the isis conda package pins a number
-of requirements that may clash with other packages.
+For Development and Contributing, see:
-At this time, we recommend creating the isis environment as detailed
-above, and then not adding any other conda packages to it. This
-is similar to the best practice usage of not adding any conda
-packages to your 'base' conda environment.
+- [Building ISIS](https://astrogeology.usgs.gov/docs/how-to-guides/isis-developer-guides/developing-isis3-with-cmake/)
+- [Contributing](https://astrogeology.usgs.gov/docs/how-to-guides/isis-developer-guides/contributing-to-isis/)
-Instead, when you need to have a conda environment with other
-packages that also needs to be able to run ISIS programs, we have
-two different options. In both cases, we'll assume that you create
-a new environment called 'working' (but it could be named anything)
-that you want to add some conda packages to, but from which you
-also want ISIS access.
+## In this README:
-The first step is to create 'working' and add whatever conda packages you want.
+- [Requests for Comment](#Requests-for-Comment)
+- [Citing ISIS](#Citing-ISIS)
+- [System Requirements](#system-requirements)
+- [Semantic Versioning](#Semantic-Versioning-and-It's-Role-in-Describing-the-Software)
-#### Easy mode, with stacking
-
-1. `conda activate isis`
-
-2. `conda activate --stack working`
-
-That's it. Told you it was easy.
-
-This activates the isis environment, gets it all set up, and
-then it 'stacks' the new working environment on top of it. To get
-out, you'll have to `conda deactivate` two times to get out of
-`working` and then out of `isis`.
-
-
-#### Harder mode, with activation script hacking
-
-The above stacking situation may have issues if you have a particularly
-complicated set of packages or other dependencies. The idea here is that
-the only thing you *really* need in your 'working' environment are
-the ISIS environment variables and the path to the ISIS executables.
-
-If the above paragraph sounded like gibberish, please seek help
-from your system administrator or local computer guru.
-
-And we can do this via customizations in the conda environment's
-activate.d/ and deactivate.d/ directories. Adding these things can
-also be done manually from the command line, but encoding them in
-the activate.d/ and deactivate.d/ scripts is handy.
-
-1. Create your conda environment however you like, adding whatever
-packages you need. If you were reading the directions above, you've
-already done this.
-
-2. Locate the path to your conda environments:
-
- conda activate
- echo $CONDA_PREFIX
- conda deactivate
-
- You'll probably get a directory that is in your home directory and
- is named `anaconda3` or `miniconda3` or something similar. For the
- rest of this set of instructions, we'll refer to it as `$HOME/anaconda3`
- to represent a directory named `anaconda3` in your home directory, but
- this should be whatever you get from the above echo command.
-
-3. Locate the path to your ISIS conda environment:
-
- conda activate isis
- echo $CONDA_PREFIX
- conda deactivate
-
- This should probably be `$HOME/anaconda3/envs/isis`. You can see
- that it starts with whatever you got from step 1, and ends in the
- name of your isis environment, if you followed the installation
- instructions above, you called that environment 'isis'.
-
- You can do the same thing to find the path to your new 'working'
- environment, but in this example, it will be at
- `$HOME/anaconda3/envs/working`.
-
-4. Copy the ISIS activation and deactivation scripts to your new
-environment. Please note that the directory names in the instructions
-below are based on how you installed conda and what you named the
-'isis' environment and the 'working' environment. You may *not* be
-able to just copy and paste these instructions directly, they are
-an example. Likewise, if your shell doesn't take the bash syntax
-in the .sh files, then you may need to select one of the other
-`env_vars.*` files in the isis directories.
-
- cd $HOME/anaconda3/envs/
- mkdir -p working/etc/conda/activate.d/
- mkdir -p working/etc/conda/deactivate.d/
- cp isis/etc/conda/activate.d/env_vars.sh working/etc/conda/activate.d/env_vars.sh
- cp isis/etc/conda/deactivate.d/env_vars.sh working/etc/conda/deactivate.d/env_vars.sh
-
-5. Edit the copied activation file in
-`$HOME/anaconda3/envs/working/etc/conda/activate.d/` to add the
-ISIS executable directory to the path, by adding this line at the
-end:
-
- export PATH=$PATH:$ISISROOT/bin
-
- Or whatever is appropriate for your shell if you aren't using
- the .sh file. No matter how you do it, it is important that
- you add `$ISISROOT/bin` to the end of the current path in your
- working environment, and not at the beginning.
-
-
-6. Edit the copied deactivation file in
-`$HOME/anaconda3/envs/working/etc/conda/deactivate.d/` to remove
-the path, by adding this line at the end:
-
- export PATH=`echo -n $PATH | awk -v RS=: -v ORS=: '/isis/ {next} {print}' | sed 's/:$//'`;`
-
- Or whatever is appropriate for your shell if you aren't using the
- .sh file. If your ISIS environment is not called `isis`, then you
- need to replace that part in the awk line above. You can look in
- the `activate.d/env_vars.sh` file to see what it should be.
-
-Adding the lines in steps 5 and 6 manually adds the 'bin/'
-directory of the ISIS environment to your path (step 5), and then
-manually removes it (step 6) on deactivation. If you are using
-some other shell, you may need to use a different syntax to add and
-remove these elements to and from your path.
+## Requests for Comment
+The ISIS project uses a Request for Comment (RFC) model where major changes to the code, data area, or distribution are proposed, discussed, and potentially adopted. RFCs are being housed in this repository's [wiki](https://github.com/USGS-Astrogeology/ISIS3/wiki).
+No RFCs are currently open.
-### Updating
+All contributors and users are welcome to review and comment on open RFCs.
- To update to the newest version of ISIS, run `conda update -c usgs-astrogeology isis`
+## Citing ISIS
- To update to our latest release candidate , run `conda update -c usgs-astrogeology/label/RC isis`
+The badge at the top of this README lists the DOI of the most recent ISIS version. As of 11/22/2024, the latest release of ISIS is version 8.3.0, and its DOI is [`10.5066/P13TADS5`](https://doi.org/10.5066/P13TADS5).
- Note that for ISIS versions 3.10 and above, new versions and release candidates will only be
- available under the package name `isis` and `conda update isis3` and
- `conda update -c usgs-astrogeology -c usgs-astrogeology/label/RC isis3`
- will not work for additional updates. Instead, after installing an `isis` package,
- `conda update isis` should be used to update to a new version and
- `conda update -c usgs-astrogeology/label/RC isis` to update to a new release candidate.
+The [Releases Page on GitHub](https://github.com/DOI-USGS/ISIS3/releases) lists the DOI for each version of ISIS. Older versions may be listed on [Zenodo](https://doi.org/10.5281/zenodo.2563341). It is good practice to cite the version of the software being used by the citing work, so others can reproduce your exact results.
-### Operating System Requirements
+## System Requirements
-ISIS runs on many UNIX variants. ISIS does not run natively on MS Windows, although it has been successfully run on Windows 10 using the Windows Subsystem for Linux (WSL). Instructions for doing this can be found [here](http://planetarygis.blogspot.com/2017/07/isis3-on-windows-10-bash.html). The UNIX variants ISIS has been successfully built on are:
+ISIS is supported on these UNIX variants (and may work on others, though unsupported):
- Ubuntu 18.04 LTS
-- Mac OS X 10.13.6 High Sierra
+- macOS 10.13.6 High Sierra
- Fedora 28
- CentOS 7.2
-ISIS may be run on other Linux or macOS operating systems then those listed above, but it has not been tested and is not supported.
-
-### Hardware Requirements
-
-Here are the minimum hardware requirements
-
-- 64-bit (x86) processors
-- 2 GB RAM
-- 2.5 GB of disk space for ISIS binaries
-- 10 GB to 510 GB disk space for ISIS data
-- 10 GB to many TB disk space for processing images
-- A quality graphics card
-
-To build and compile ISIS requires following the instructions listed below, which are given on the GitHub wiki page for the ISIS project:
-
-- [Getting Started With GitHub](https://github.com/USGS-Astrogeology/ISIS3/wiki/Developing-ISIS3-with-cmake#getting-started-with-github)
-- [Building ISIS With cmake](https://github.com/USGS-Astrogeology/ISIS3/wiki/Developing-ISIS3-with-cmake#building-isis3)
-- [New ISIS environmental variables and their meanings](https://github.com/USGS-Astrogeology/ISIS3/wiki/Developing-ISIS3-with-cmake#new-environmental-variable-meanings)
-- [Custom data and test directories](https://github.com/USGS-Astrogeology/ISIS3/wiki/Developing-ISIS3-with-cmake#custom-data-and-test-data-directories)
-- [Cleaning builds](https://github.com/USGS-Astrogeology/ISIS3/wiki/Developing-ISIS3-with-cmake#cleaning-builds)
-- [Building individual applications/objects](https://github.com/USGS-Astrogeology/ISIS3/wiki/Developing-ISIS3-with-cmake#building-individual-isis3-applicationsobjects)
-- [Building ISIS documentation](https://github.com/USGS-Astrogeology/ISIS3/wiki/Developing-ISIS3-with-cmake#building-isis3-documentation)
-- [What to do if you encounter any problems](https://github.com/USGS-Astrogeology/ISIS3/wiki/Developing-ISIS3-with-cmake#problems)
-
-## The ISIS Data Area
-
-### Ancillary Data
-
-Many ISIS applications require ancillary data. For example, calibration applications require flat files to do flat field corrections, and map projection applications require DTMs to accurately compute intersections. Due to its size, this data is stored in a separate directory called the ISIS Data Area. Any location can be used for the ISIS Data Area, the software simply requires that the ISISDATA environment variable is set to its location.
-
-### Structure of the ISIS Data Area
-
-Under the root directory of the ISIS Data Area pointed to by the ISISDATA/ISIS3DATA environment variable are a variety of sub-directories. Each mission supported by ISIS has a sub-directory that contains mission specific processing data such as flat files and mission specific SPICE. There are also data areas used by more generic applications. These sub-directories contain everything from templates to test data.
-
-### Versions of the ISIS Data Area
-
-In ISIS version 4.1.0 and later, several files previously stored in the data area closely associated with ISIS applications were moved into version control with the ISIS source code. To support the use of data in ISIS versions predating 4.1.0 the `downloadIsisData` application will need to download the data named `legacybase`. This is explained further in the [Full ISIS Data Download](README.md#Full-ISIS-Data-Download) section.
-
-
-### Size of the ISIS Data Area
-
-If you plan to work with data from all missions, then the download will require about 520 GB for all the ancillary data. However, most of this volume is taken up by SPICE files. We have a [Web service](#isis-spice-web-service) that can be used in lieu of downloading all of the SPICE files. This reduces the total download size to about 10 GB.
-
-### Full ISIS Data Download
-
-> Warning: if you are looking to download ISIS data via rsync, this is no longer supported. The rsync server isisdist.astrogeology.usgs.gov was shutdown in November 30, 2022 and replaced with an Amazon S3 storage bucket specified in [rclone.conf](isis/config/rclone.conf). The outdated rsync download information can be found [here](https://github.com/USGS-Astrogeology/ISIS3/wiki/Outdated-ISIS-Data-Information) and updated instructions for downloading ISIS data are provided below.
-
-The ISIS Data Area is hosted on a combination of AWS S3 buckets and public http servers e.g. NAIF, Jaxa, ESA and not through conda channels like the ISIS binaries. This requires using the `downloadIsisData` script from within a terminal window within your Unix distribution, or from within WSL if running Windows 10. Downloading all mission data requires over 520 GB of disk space. If you want to acquire only certain mission data [click here](#Mission-Specific-Data-Downloads). To download all ISIS data files, continue reading.
-
-To download all ISIS data, use the following command:
-
- downloadIsisData all $ISISDATA
-
-> Note: this applicaion takes in 3 parameters in the following order \ \ \
-> For more usage, run `downloadIsisData --help` or `downloadIsisData -h`.
-
-> Note: The above command downloads all ISIS data including the required base data area and all of the optional mission data areas.
-
-### Partial Download of ISIS Base Data
-
-This data area contains data that is common between multiple missions such as DEMS and leap second kernels. As of ISIS 4.1, the base data area is no longer required to run many applications as data such as icons and templates has been moved into the binary distribution. If you plan to work with any applications that use camera models (e.g., cam2map, campt, qview), it is still recommended you download the base data area. To download the base data area run the following commands:
-
- downloadIsisData base $ISISDATA
-
-> Note: For accessing ISIS Data for versions of ISIS prior to ISIS 4.1.0, you must download the `legacybase` area and not the base area when using this application as shown below:
-
- downloadIsisData legacybase $ISISDATA
-### Partial Download of Mission Specific Data
-
-There are many missions supported by ISIS. If you are only working with a few missions then you can save disk space by downloading only those specific data areas. If you want to limit the download even further, read the next section about the SPICE Web Service. Otherwise [jump](#Mission-Specific-Data-Downloads) to the mission specific sections.
-
-### ISIS SPICE Web Service
-
-ISIS can now use a service to retrieve the SPICE data for all instruments ISIS supports via the internet. To use this service instead of your local SPICE data, click the WEB check box in the spiceinit program GUI or type spiceinit web=yes at the command line. Using the ISIS SPICE Web Service will significantly reduce the size of the downloads from our data area. If you want to use this new service, without having to download all the SPICE data, add the following argument to the mission-specific downloadIsisData command:
-
- --exclude="kernels/**"
-
-For example:
+[//]: # ( These are all past their vendors' standard support, most EOL: )
+[//]: # ( Ubuntu 18.04LTS Released 2018.04, ESS 2023.05, EOL 2028.04 )
+[//]: # ( macOS 10.13.6 High Sierra Released 2017.09, EOL 2020.11 )
+[//]: # ( Fedora 28 Released 2018.05, EOL 2019.05 )
+[//]: # ( CentOS 7.2 Released 2015.12, EOL 2024.06 )
- downloadIsisData cassini $ISISDATA --exclude="kernels/**"
+ISIS is not supported on Windows, but
+[using WSL](https://planetarygis.blogspot.com/2024/02/isis-and-asp-on-windows-11-wsl-take-3.html)
+may be possible.
-You can also use `include` argument to partially download specific kernels. For example, download only cks and fks of LRO mission:
+#### Architecture Support
- downloadIsisData lro $ISISDATA --include="{ck/**,fk/**}"
+- 64-bit x86 processors: Supported.
+- Apple Silicon: In Development.
-**WARNING:** Some instruments require mission data to be present for radiometric calibration, which is not supported by the SPICE Web Server, and some programs that are designed to run an image from ingestion through the mapping phase do not have an option to use the SPICE Web Service. For information specific to an instrument, see the documentation for radiometric calibration programs.
+#### Storage Space Required
-### Mission Specific Data Downloads
+- 2.5 GB for ISIS binaries
+- 10 GB up to multiple TB for mission data and processing large images
-For versions of ISIS prior to ISIS 4.1.0, please use the `--legacy` flag
-| Mission | Command |
-| ------ | ------ |
-| Apollo 15 | `downloadIsisData apollo15 $ISISDATA` |
-| Apollo 16 | `downloadIsisData apollo16 $ISISDATA` |
-| Apollo 17 | `downloadIsisData apollo17 $ISISDATA` |
-| Cassini | `downloadIsisData cassini $ISISDATA` |
-| Chandrayaan 1 | `downloadIsisData chandrayaan1 $ISISDATA` |
-| Clementine 1 | `downloadIsisData clementine1 $ISISDATA` |
-| Dawn | `downloadIsisData dawn $ISISDATA` |
-| ExoMars | `downloadIsisData tgo $ISISDATA` |
-| Galileo | `downloadIsisData galileo $ISISDATA` |
-| Hayabusa 2 | `downloadIsisData hayabusa2 $ISISDATA` |
-| Juno | `downloadIsisData juno $ISISDATA` |
-| Kaguya | `downloadIsisData kaguya $ISISDATA` |
-| Lunar Orbiter | `downloadIsisData lo $ISISDATA` |
-| Lunar Reconnaissance Orbiter | `downloadIsisData lro $ISISDATA` |
-| Mars Exploration Rover | `downloadIsisData mer $ISISDATA` |
-| Mariner10 | `downloadIsisData mariner10 $ISISDATA` |
-| Messenger | `downloadIsisData messenger $ISISDATA` |
-| Mars Express | `downloadIsisData mex $ISISDATA` |
-| Mars Global Surveyor | `downloadIsisData mgs $ISISDATA` |
-| Mars Reconnaissance Orbiter | `downloadIsisData mro $ISISDATA` |
-| Mars Science Laboratory | `downloadIsisData msl $ISISDATA` |
-| Mars Odyssey | `downloadIsisData odyssey $ISISDATA` |
-| Near | `downloadIsisData near $ISISDATA` |
-| New Horizons | `downloadIsisData newhorizons $ISISDATA` |
-| OSIRIS-REx | `downloadIsisData osirisrex $ISISDATA` |
-| Rolo | `downloadIsisData rolo $ISISDATA` |
-| Rosetta | `downloadIsisData rosetta $ISISDATA` |
-| Smart1 | `downloadIsisData smart1 $ISISDATA` |
-| Viking 1 | `downloadIsisData viking1 $ISISDATA` |
-| Viking 2 | `downloadIsisData viking2 $ISISDATA` |
-| Voyager 1 | `downloadIsisData voyager1 $ISISDATA` |
-| Voyager 2 | `downloadIsisData voyager2 $ISISDATA` |
-### ISIS Test Data
-ISIS is comprised of two types of tests, custom Makefile based tests, and GTest based tests. Those that are GTest based, make economical use of data that exists on the ISIS3 repo along with the source, so no special data is required to run those other than the ISIS data area. The Makefile tests depend on a separate source of data that consists of a few gigabytes of input and expected output data used for testing ISIS applications. The Makefile based tests use the `ISISTESTDATA` environment variable to know where the required data are located. The total size of this test data decreases as we work towards converting Makefile tests to GTests.
-
-### How to download the ISIS test data with rclone
-Test data is hosted using Amazon S3 storage buckets. We recommend using rclone to pull the data into a local directory. You can download rclone using their instructions (see: https://rclone.org/downloads/) or by using an anaconda environment (see: https://docs.anaconda.com/anaconda/install/). If you already have an anaconda environment up, install rclone with: `conda install –c conda-forge rclone`
+[//]: # ( Legacy ISIS Versions, links broken )
-Once rclone is installed, with `$ISISROOT` set, simply run: `rclone --config $ISISROOT/etc/isis/rclone.conf sync asc_s3:asc-isisdata/isis_testData/ $ISISTESTDATA`
-where:
- - `$ISISTESTDATA` is the environment variable defining the location of the isis test data.
- - `--config` overwrites the default config path, you want to use the rclone config that ships with ISIS.
- - `asc_s3:` is the name of S3 configuration in the configuration file that ships with ISIS. This can be whatever you want to name it, in this case it is named remote.
- - `asc-isisdata/isis_testData/` is the name of the S3 bucket you’re downloading from
+[//]: # ( ISIS 2 - http://isis.astrogeology.usgs.gov/Isis2/isis-bin/installation.cgi )
-$ISISTESTDATA should now contain a full clone of the ISIS test data for running Makefile based tests.
+[//]: # ( ISIS3 3.5.2 - https://isis.astrogeology.usgs.gov/documents/LegacyInstallGuide/index.html )
-Notes:
- - Users can download specific files from the bucket by adding path data or file information to the first argument, that is, to download only the ‘base’ folder from the isis_testData bucket, the user could call:
-rclone sync remote:asc-isisdata/isis_testData/base
- - It is important that users understand the difference in rclone’s ‘sync’ and ‘copy’ methods. ‘copy’ will overwrite all data in the destination with data from source. ‘sync’ replaces only changed data.
- - Syncing / copying in either direction (local -> remote or remote -> local) results in any changed data being overwritten. There is no warning message on overwrite.
-## Installing older versions of ISIS
----------------------------------
+## Semantic Versioning
-### How do I install ISIS2?
+Versions of ISIS now use a Major.Minor.Patch scheme (e.g., 8.3.0), detailed in [RFC 2](https://github.com/DOI-USGS/ISIS3/wiki/RFC2:-Release-Process#terms).
-If you are looking for ISIS2, please [refer to the ISIS 2 Installation Guide](http://isis.astrogeology.usgs.gov/Isis2/isis-bin/installation.cgi) for instructions on downloading and installing ISIS 2.
+| Major | Minor | Patch |
+|-------|-------|-------|
+| 8 | .3 | .0 |
-### How do I install ISIS3.5.2 or earlier?
-If you are looking for a version of ISIS prior to 3.6.0, please [refer to the Legacy ISIS3 Installation Guide](https://isis.astrogeology.usgs.gov/documents/LegacyInstallGuide/index.html) for instructions on downloading and installing ISIS, versions prior to 3.6.0
+- **Patch Releases** (i.e. 8.0.2 → 8.0.3) fix a bug, but don't make breaking changes or add features.
-### How do I access the ISISDATA download script with ISIS 7.0.0 or earlier
+- **Minor Releases** (i.e. 8.2.0 → 8.3.0) add features, but no breaking changes.
-You can download the script and config file from the repo:
+- **Major Releases** (i.e. 8.3.0 → 9.0.0) add a breaking change.
-```
-# install rclone
-conda install -c conda-forge rclone
+#### Breaking Changes
-# download the script and rclone config file
-curl -LJO https://github.com/USGS-Astrogeology/ISIS3/raw/dev/isis/scripts/downloadIsisData
+A breaking change alters API signatures, existing arguments to ISIS apps, or output. Anything that could break backwards compatibility with a script is considered breaking*.
-curl -LJO https://github.com/USGS-Astrogeology/ISIS3/raw/dev/isis/config/rclone.conf
+Additions (i.e, an added optional argument, and added column in a .csv file) aren't considered breaking, but changes to existing output or input (i.e, changing an existing argment, changing the title of an existing .csv output column) are breaking.
-# run the script as normal, using --config to point to where you downloaded the config file
-python downloadIsisData --config rclone.conf $ISISDATA
-```
+> *.txt files, or output meant only for human readers, are excluded from ISIS's definition of a breaking change.
-> The script does not support python2, sometimes you need to explicitly use python3 with `python3 downloadIsisData $ISISDATA --config rclone.conf`
+Contributors must make sure that breaking changes are well-identified. Breaking changes require input, discussion, and approval from the community before they can be adopted into ISIS.
-## Semantic Versioning and Its Role in Describing the Software
-In 2019, the ISIS project adopted [semantic versioning](https://semver.org/) via its second [Request for Comment](https://github.com/USGS-Astrogeology/ISIS3/wiki/RFC2:-Release-Process) (RFC). Semantic versioning was adopted as a tool to help quickly describe how changes to the software impact users and developers. Versions of ISIS are now using a Major.Minor.Bug scheme (e.g., 7.1.0).
+#### Upgrade considerations
-The Major, Minor and Bug numbers are in order of importance. The final (Bug) number is incremented whenever one or more bug fixes are included in a version. Neither users nor developers should see any changes in the way ISIS programs are called or how the [API](https://github.com/USGS-Astrogeology/ISIS3/blob/dev/APIdefinition.md) operates as the final (Bug) number increments.
+Most users can safely upgrade to Minor and Patch Versions, but should be more cautious about a Major upgrade, which may introduce changes that could alter their workflow. You can reference the [Changelog](https://github.com/USGS-Astrogeology/ISIS3/blob/dev/CHANGELOG.md) for more specific information on the changes.
-The first two numbers indicate whether the change(s) are breaking or non-breaking. What is a [breaking change](https://github.com/USGS-Astrogeology/ISIS3/wiki/RFC2:-Release-Process#terms)? If a change to [the API](https://github.com/USGS-Astrogeology/ISIS3/blob/dev/APIdefinition.md), defined as programs (e.g., `spiceinit` or `cam2map` or `pds2isis`) and some text output (e.g., CSV output, but not `.txt`), alters how a user calls the program or parses the program output in a way that a scripted solution would fail, that change would be considered a breaking change. In other words, if a CSV output file removed or renamed a column, that would be breaking. If a CSV file added a new column, that would not be breaking. Likewise, if an application `spiceinit` adds a new argument, that is non-breaking. If the change removes, reorders, or changes how the application (CLI) is called, the change is breaking.
+### ISIS Release Cadence (LTS)
+ISIS has a [Long Term Support (LTS)](https://github.com/USGS-Astrogeology/ISIS3/discussions/4691) model. This assumes that users will update at either:
-### Users
-Users of ISIS benefit from semantic versioning because they can quickly determine whether or not an upgrade of their current version could include changes that would be breaking. When deciding whether or not to upgrade, users can safely assume that an upgrade of the minor version number will **only** add capabilities. Users should be more cautious with changes to the major version, as some breaking change(s) are included. How should a user proceed? Users should reference the [Changelog](https://github.com/USGS-Astrogeology/ISIS3/blob/dev/CHANGELOG.md) to understand what changes have been made that necessitated an increase in the Major version number.
-
-### Developers
-Developers writing against the ISIS API or writing code for submission to the ISIS project also benefit from semantic versioning. For the former use case, writing against ISIS, developer concerns are similar to user concerns. When has the API made of command line tools and program outputs changed? Does that change impact my pipeline or code? Do I need to adjust my work before updating versions (for example, to gain access to new features)? These questions are answered by checking the versioning and the Changelog.
-
-Developers should ensure that changes that break the API are well-marked. Before making a breaking change to the API, we require an [RFC](https://github.com/USGS-Astrogeology/ISIS3/wiki/RFC%23:-Template) to solicit input from the broader community. The RFC process allows impacted persons to discuss the change, propose alterations, and finally adopt or pause the inclusion of the change in the code base.
-
-### What update cadence does the project anticipate from users and developers?
-The project is in the process of adopting a [Long Term Support](https://github.com/USGS-Astrogeology/ISIS3/discussions/4691)(LTS) model. Once fully adopted, the project assumes that either (1) users and developers will freeze the version they are using with no expectation of updates or (2) users and developers will update at either each LTS version increment (updating every 18 months) or work on the quarterly release (therefore updating every 3 months). Users and developers using the LTS or current release versions will benefit from bug fixes and new non-API breaking features.
+ - Each LTS release (every 18 months), or
+ - Each quarterly release (every 3 months).
diff --git a/isis/src/docsys/assets/img/image-source-files/isis-logo.ai b/isis/src/docsys/assets/img/image-source-files/isis-logo.ai
old mode 100755
new mode 100644
index 9efb70df7e..d0e81e8c8c
--- a/isis/src/docsys/assets/img/image-source-files/isis-logo.ai
+++ b/isis/src/docsys/assets/img/image-source-files/isis-logo.ai
@@ -1,7 +1,7 @@
%PDF-1.6
%
-1 0 obj
<>/OCGs[23 0 R 24 0 R 25 0 R]>>/Pages 3 0 R/Type/Catalog>>
endobj
2 0 obj
<>stream
+1 0 obj
<>/OCGs[24 0 R 25 0 R 26 0 R]>>/Pages 3 0 R/Type/Catalog>>
endobj
2 0 obj
<>stream
-
+
- Adobe Illustrator 28.7 (Macintosh)
- 2024-09-13T16:11:37-07:00
- 2024-09-13T16:11:38-07:00
- 2024-09-13T16:11:38-07:00
+ Adobe Illustrator 29.0 (Macintosh)
+ 2024-11-22T20:07:01-08:00
+ 2024-11-22T20:07:01-08:00
+ 2024-11-22T20:07:01-08:00
256
- 164
+ 120
JPEG
- /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgApAEAAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4ql+ta5Z6PDbz3iv6F
xcR2xlQArG0poryVIonKgJ98jKVM4QMuSF84ahq2n6BPc6VEZLpWjBYRmYxxs4EkoiXd+CknjgmS
BsywxBlRQHkvXlvpbu1k11NXljCSRq1q1lcIh2blGwXkvKlCF274Mcr62yzQqjVfG0V5Y1W+1G+1
715A9tZ6g1paKABxWKKMuKgAn4mPXDAkk+9jlgAI+YS6Pzvqj6nehNLWXSrC9+oXLRSFryMhgvrt
bhN4iTtQ1pvkfEN8tmzwRQ33IvyZhlrjOxV2KuxV2KuxVjXnTzi/lgadcy2bT6bcz+jfXat/vOpA
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
rsVdirsVdirsVdirsVf/2Q==
@@ -74,7 +74,7 @@
xmp.did:812a6b46-9c8c-40c7-9a5b-b5457050d8f5
- uuid:e6af970f-a606-ab4e-bdb6-983f96b2dba7
+ uuid:ad4cd752-d932-2440-be36-2d74a06c2138
xmp.did:645a5ea1-3b7e-4280-a3f4-1e0276715760
proof:pdf
@@ -127,318 +127,301 @@
-
endstream
endobj
3 0 obj
<>
endobj
5 0 obj
<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
19 0 obj
<>/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
20 0 obj
<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
21 0 obj
<>/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
22 0 obj
<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
27 0 obj
<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
35 0 obj
<>stream
+
endstream
endobj
3 0 obj
<>
endobj
5 0 obj
<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
19 0 obj
<>/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
20 0 obj
<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
21 0 obj
<>/Font<>/ProcSet[/PDF/Text]/Properties<>/Shading<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
22 0 obj
<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
23 0 obj
<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
28 0 obj
<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 330.0 330.0]/Type/Page/PieceInfo<>>>
endobj
38 0 obj
<>stream
+HܖO7:(kACPl@=Mb@C~xm9q(#O!7?>x.ͤ>s/_.:!k'wxg>O}R|zG0 O|н"l'42мEPT:,!{Ji9`"['"SV>ɍ٩Umg̠Ly<|3g*0I3f5EuF̸T!mA'8eQ,,SS_D-seTi4aĎ҇6rG Jɞ!Y!"cRBghAh!hHdAJ?>gz6xfUH9BE`z1uz4&jg'ktr7nGYʔ<^#I\jX>dlo@kܿyv]rIWr,A[/1/;pdH]3:
⒓G5